InternetData
Database v2

History

GET
/api/v2/database/downloads

Refusals are listed too: a denial is what answers "it stopped working", and its absence answers nothing.

Authorization

apikey<token>

?apikey=<key>. Convenient in a browser or a curl one-liner, which is how a database is usually fetched; prefer a header elsewhere.

This is the same v2 key as the other two schemes. A v1 credential is a different vocabulary and fails validation here, as it would anywhere.

In: query

Query Parameters

limit?integer

How many attempts to return. Clamped to 200.

Default50
Range1 <= value <= 200

Response Body

application/json

application/json

curl -X GET "https://internetdata.io/api/v2/database/downloads"
{
  "downloads": [
    {
      "dataset_id": "string",
      "format": "string",
      "outcome": "ok",
      "bytes": 0,
      "http_status": 0,
      "apikey_id": "string",
      "client_ip": "string",
      "user_agent": "string",
      "created": "2019-08-24T14:15:22Z"
    }
  ]
}
{
  "rc": "string"
}