Get fingerprints for a given IP
GET/ip/:ip/fingerprints
Retrieve the JA3 and JA4 hashes associated with a specified IP address.
Request
Path Parameters
ip ipv4required
IP address to get fingerprints 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 JA3 and JA4 hashes for the specified IP.
- application/json
- Schema
- Example (from schema)
Schema
ja3 string[]
List of JA3 hashes associated with the IP.
ja4 string[]
List of JA4 hashes associated with the IP.
ip ipv4
The IP address queried.
{
"ja3": [
"cba7f34191ef2379c1325641f6c6c4f4"
],
"ja4": [
"t12i130500_2d7513195f68_e51b7354d87f"
],
"ip": "216.218.206.115"
}
Bad request, verify the IP address format.
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Invalid IP address."
}
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...