API Request

Every request sent to OpenAPI will be in this format. All parameters are added to HEADER and BODY is left empty. All requests are POST requests.

ParameterDescriptionSample Data
KEYOpenAPI partner key provided.api-key
TOKENToken generated using above methodtoken
VERSIONVersion of the API that is being called2.0
Content-TypeContent type of the request. Should be application/jsonapplication/json

Each API request will have a payload to shown in example below.

curl --location --request POST '{url}' \
--header 'KEY: your-api-key' \
--header 'TOKEN: token' \
--header 'VERSION: 2.0' \
--header 'Content-Type: application/json'

Make sure to replace API Key with your API key.