Authentication & API structure
Datelist API is a standard HTTP based JSON API that follows a conventional structure.
Authentication
Each request must be authenticated with an API key, which you can get in your user profile in the Datelist.io application (https://datelist.io/users/edit) .
To use it in your HTTP calls, you must emit each of your request using a custom "Authorization" endpoint, which follows this format:
Authorization: Bearer API_TOKEN
API Structure
Once authenticated, Datelist API will answer your requests using HTTP payload in JSON format. Standard HTTP status code is used to indicate the success or the failure of each request.
To be sure to get data in the correct format, be sure to append the following headers:
Accept: application/json
Content-Type: application/json
Last updated