For Developers

Successful Responses

Successful responses return an HTTP status code of 200 and, where applicable, a payload containing the requested data.

Response Properties

PropertyDescription
$dataThe actual response data.
$requestThe UUID of the request. If you ever need to contact us regarding the API, it's helpful to include this UUID so we can investigate more easily.

Example Responses

When requesting a single result:

{
  "$data": {
    ...
  },
  "$request": "00000000-0000-0000-0000-000000000000"
}

When requesting multiple results:

{
  "$data": [
    {
      ...
    },
    {
      ...
    }
  ],
  "$request": "00000000-0000-0000-0000-000000000000"
}