Integrate Fraud Checker into your application using our powerful REST API.
Fraud Checker API allows you to check customer fraud records via a simple HTTP request. Send a customer phone number, and we analyze data from our vast database and partner sources to provide a complete fraud report.
Avg response time < 200ms
Auto check multiple sources
Clean data in JSON format
https://fc.rocketflow.biz/api
To use the API, you must send an Authorization token in the header of each request.
Authorization: Bearer YOUR_API_KEY
Accept: application/json
Check fraud report for a specific phone number. This gathers data from all sources and returns a merged report.
| Parameter | Type | Required | Description |
|---|---|---|---|
phone |
string | Yes | 11 digit mobile number (e.g. 01712345678) |
curl -X GET "https://fc.rocketflow.biz/api/check?phone=01712345678" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
$client = new \GuzzleHttp\Client();
$response = $client->request('GET', 'https://fc.rocketflow.biz/api/check', [
'headers' => [
'Authorization' => 'Bearer YOUR_API_KEY',
'Accept' => 'application/json',
],
'query' => [
'phone' => '01712345678'
]
]);
echo $response->getBody();
const axios = require('axios');
axios.get('https://fc.rocketflow.biz/api/check', {
params: {
phone: '01712345678'
},
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Accept': 'application/json'
}
})
.then(response => console.log(response.data))
.catch(error => console.error(error));
import requests
url = "https://fc.rocketflow.biz/api/check"
params = {
"phone": "01712345678"
}
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Accept": "application/json"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
Check multiple phone numbers at once. (Note: Available on Premium plans)
| Parameter | Type | Required | Description |
|---|---|---|---|
phones |
string | Yes | Comma or newline separated phone numbers |
Test live with your API key.
// রেসপন্স এখানে দেখাবে...
| Code | Description |
|---|---|
| 200 | Successful Response |
| 400 | Invalid parameters or input |
| 401 | Authentication Failed (Invalid API Key) |
| 403 | No API Access (Plan upgrade required) |
| 429 | Rate Limit Exceeded |