Fast IP Lookup
GET/fast/:ip
Quickly checks if a given IP address was detected by ELLIO's network of deception sensors. This endpoint is designed for rapid lookups, ideal for initial triage or automation workflows.
Request
Path Parameters
ip stringrequired
IP address to lookup (currently supports IPv4).
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
Request processed successfully.
- application/json
- headers
- Schema
- Example (from schema)
Schema
seen boolean
Indicates if the IP address was observed within the last 30 days.
{
"seen": true
}
- Schema
Schema
any
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...