Get IPs associated with a specific fingerprint
GET/fingerprint/:fingerprint_type/:fingerprint/ips
Retrieve a list of IP addresses associated with a specified fingerprint.
Request
Path Parameters
fingerprint_type stringrequired
Possible values: [ja3
, ja4
]
Fingerprint type
fingerprint stringrequired
Fingerprint to get associated IPs for.
Query Parameters
apikey stringrequired
API key required. Developers can contact [email protected] or use the provided test key (GLTqgI1J0LRJcw5YQ4b859fF8h5a0C9c). For commercial use, visit our pricing page or contact [email protected].
Responses
- 200
- 400
- 401
- 429
A JSON object containing the JA4 fingerprint and associated IPs.
- application/json
- Schema
- Example (from schema)
Schema
fingerprint string
The fingerprint queried.
fingerprint_type string
Indicates the type of fingerprint ('ja4', 'ja3').
ips ipv4[]
List of IPs associated with the fingerprint.
{
"fingerprint": "t12i130500_2d7513195f68_e51b7354d87f",
"fingerprint_type": "ja4",
"ips": [
"206.189.136.44"
]
}
Bad request, verify the fingerprint type and fingerprint.
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Invalid fingerprint type."
}
Unauthorized access, API key required.
- application/json
- Schema
- Example (from schema)
Schema
message string
request_id string
{
"message": "No API key found in request.",
"request_id": "744c9a3a4bbe9e1d5720ef0c31999c38"
}
Rate limit exceeded.
- application/json
- Schema
- Example (from schema)
Schema
message string
request_id string
{
"message": "API usage limit exceeded.",
"request_id": "744c9a3a4bbe9e1d5720ef0c31999c38"
}
Loading...