IP Query API
GET
/v1/ipquery(telemetry)
IP Query.
Service
telemetry
telemetry
Request Parameters
| Name | In | Type | Description | MUST include |
|---|---|---|---|---|
| X-Auth-Token | header | string | Valid Authentication Token. Please see developers documentation/identity. | X |
| X-Timezone | header | string | Timezone for response datetime property values. (default UTC) | |
| ip | body | string | IP address to search for | |
| time | body | string | Timestamp in which IP was used |
Request Example
{
"time": "2024-02-16 10:00:00+00:00",
"ip": "100.66.77.1"
}
Response Status Codes
| Code | Meaning |
|---|---|
| 200 | OK |
| 400 | Bad Request |
| 401 | Unauthorized / Require Authentication |
| 403 | Forbidden / Access Denied |
| 429 | Too Many Requests / Your Rate Limited |
| 500, 501, 502, 503, 504 | Service Unavailable |
Response Properties
| Name | In | Type | Description |
|---|---|---|---|
| acct_unique_id | body | string | Unique ID |
| id | body | string | Unique ID of IP record |
| prefix | body | string | IP address |
| prefix_type | body | string | Type of address |
| start_time | body | string | Start Time |
| stop_time | body | string | Stop Time |
| update_time | body | string | Update Time |
Response Example
[
{
"id": "33b934f0-cc81-11ee-a3ca-9d2f10704be2::2024-02-01"
"start_time": "2024-02-16T04:09:38+00:00",
"update_time": "2024-02-16T10:09:39+00:00",
"stop_time": null,
"acct_unique_id": "33b934f0-cc81-11ee-a3ca-9d2f10704be2",
"prefix_type": "framed-ip-address",
"prefix": "100.66.77.1",
}
]