Base URL

The Apriora API is built on REST principles, and only requests using the HTTPS protocol are supported.

All request should be made to the following base URL:

https://api.apriora.ai/v1/api

Authentication

In order to authenticate you need an API-Key obtained from your dashboard. Add the following header to all your requests:

"X-API-Key": <API-KEY>

Response codes

Apriora uses the standard HTTP code to indicate the success or failure of an API request.

200 Codes in the indicate success, codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, etc.), and codes in the 5xx range indicate an error with the Apriora servers.

StatusDescription
200Successful request
400Invalid Parameters
401The API key used was invalid.
404The resource was not found.
5xxIndicates an error with the Apriora servers.