Logs (CSV)
GET/keys/:key/lookups
Reports lookup information on a key for paid lookups.
This method requires a user_token
, which can be found on your accounts page.
A maximum interval of 90 days can be provided for analysis. If no start or end date is provided, the last 21 days will be used as the default interval.
Download Usage History (CSV)
GET /keys/:key/lookups
Returns a CSV download of lookups performed and associated information.
Note that the Content-Type returned will be CSV (text/csv). For a non 200 response, the Content-Type
will revert to JSON with the error code and message embedded.
Data Redaction
Personally Identifiable Data (PII) caught in this your usage log (including IP, search term and URL data) will be redacted on a weekly basis.
By default, PII will be redacted if it is older than 21 days. This timeframe can be configured from your dashboard.
You may prevent PII collection altogether by setting the interval to 0
days.
Request
Path Parameters
Query Parameters
An start date/time in the form of a UNIX Timestamp in milliseconds, e.g. 1418556452651
. If no start time is provided, the start time will be assigned to a time 21 days prior to the end time.
An end date/time in the form of a UNIX Timestamp in milliseconds, e.g. 1418556452651
. If no end time is provided, the current time will be used.
Sublicensed keys only. This will restrict the analysed dataset to a specific licensee.
Responses
- 200
- 400
Success
- text/csv
- Schema
- Example
Schema
- string
Success
2015-02-21T16:05:22.991Z,82.85.128.18,SW12AA,https://www.example.com/,Postcode Lookup,
2015-02-21T16:05:38.298Z,82.85.128.18,10 Downing Street London,https://www.example.com/,Address Lookup,CRM
2015-02-21T16:06:49.227Z,82.85.128.18,OX44PP,https://www.example.com/,Postcode Lookup,"Website,Live"
2015-02-21T16:07:02.706Z,82.85.128.18,PL9 9HE,https://www.example.com/,Postcode Lookup,
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
API Response Code. Non 2xxx
code indicates a failure. This code will provide a more specific reason when a failure occurs and facilitates debugging.
Human readable error message supplied with every error response.
errors object[]
Indicates location of error in request query or URL parameter
Indicates location of error in request query or URL parameter
{
"code": 0,
"message": "string",
"errors": [
{
"message": "should have required property 'type'",
"path": ".query.type",
"errorCode": "required.openapi.validation"
}
]
}