Successful Responses

All API endpoints respond in a standard JSON response format for 2xx range HTTP responses. The root response object is split into two keys, data and meta.

The data key will contain an array of objects for plural endpoints or a single object for singular endpoints.

The meta key will contain information related to your request including any information required for paginating the response.

{
  "data": [
    {...},
    {...}
  ],
  "meta": {
    ...
  }
}

Last updated