System ID (raw file)
curl --request POST \
--url https://findly.icu/api/v1/search/system-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"system_id": "3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13"
}
'import requests
url = "https://findly.icu/api/v1/search/system-id"
payload = { "system_id": "3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({system_id: '3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13'})
};
fetch('https://findly.icu/api/v1/search/system-id', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"module": "system-id",
"system_id": "3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13",
"file": {
"name": "uuid-3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13.txt",
"bytes": 54,
"lines": 2,
"truncated": false,
"total_bytes": 54,
"text": "john.doe@example.com:hunter2\njane@example.com:letmein\n"
},
"billed": true,
"usage": {
"plan": "Professional",
"plan_expires_at": "2026-10-16T12:00:00.000Z",
"daily_quota": 500,
"used": 13,
"remaining": 487,
"resets_at": "2026-09-17T00:00:00.000Z"
}
}
API reference
System ID (raw file)
Downloads the raw file behind a result. Pass the system_id of a record from Intelligence Search or Identity Portal. The file text (first 8 MB) comes back in JSON, or as a text/plain attachment with ?format=txt.
POST
/
api
/
v1
/
search
/
system-id
System ID (raw file)
curl --request POST \
--url https://findly.icu/api/v1/search/system-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"system_id": "3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13"
}
'import requests
url = "https://findly.icu/api/v1/search/system-id"
payload = { "system_id": "3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({system_id: '3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13'})
};
fetch('https://findly.icu/api/v1/search/system-id', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"module": "system-id",
"system_id": "3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13",
"file": {
"name": "uuid-3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13.txt",
"bytes": 54,
"lines": 2,
"truncated": false,
"total_bytes": 54,
"text": "john.doe@example.com:hunter2\njane@example.com:letmein\n"
},
"billed": true,
"usage": {
"plan": "Professional",
"plan_expires_at": "2026-10-16T12:00:00.000Z",
"daily_quota": 500,
"used": 13,
"remaining": 487,
"resets_at": "2026-09-17T00:00:00.000Z"
}
}
Authorizations
bearerAuthapiKeyHeader
Authorization: Bearer fly_live_…. Takes precedence when both headers are sent.
Query Parameters
json (default) or txt. Same search, same price, different output.
Available options:
json, txt Body
application/json
UUID of the file, as returned in results[].system_id. Case-insensitive.
Example:
"3f0c6e1a-9b2d-4c7e-8f41-2a6d5b9e0c13"
Response
Search served (billed). JSON by default; with ?format=txt, the file itself as a text/plain attachment, with X-File-Truncated and X-File-Total-Bytes.