InternetData
Database v2

List

GET
/api/v2/database/list

The whole published catalog, with your organization's licence beside each entry, so standing says whether a database is yours today (licensed), was (expired), or has never been bought (unlicensed).

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

Response Body

application/json

application/json

curl -X GET "https://internetdata.io/api/v2/database/list"
{
  "databases": [
    {
      "base": "vpn_ip",
      "name": "VPN IP",
      "summary": "string",
      "standing": "licensed",
      "redistribution": "evaluation",
      "starts": "2019-08-24T14:15:22Z",
      "expires": "2019-08-24T14:15:22Z",
      "versions": [
        {
          "id": "vpn_ip_v1",
          "version": 1,
          "summary": "string",
          "formats": [
            "csvgz"
          ]
        }
      ]
    }
  ]
}
{
  "rc": "string"
}