Skip to main content

Getting started

The Qvalon API uses REST to communicate between client and server and JSON format as a main content type.

Use this base url for making requests:

https://api.qvalon.com/v1/

Authentication#

Qvalon API uses API tokens to authenticate requests. See Authentication section to know how to manage your API tokens. Just add it to Authorizaion: Bearer <your_token> request header.

Use this API to test authentication:

curl https://api.qvalon.com/v1/xauth/account \
--header 'Authorization: Bearer <your_token>'

Errors#

Qvalon API uses HTTP respose codes to indicate the result of request. Code 2xx means - request was successful. 4xx usualy means - check your request parameters. 5xx - try again laiter or call support. See Errors for more information.

Postman collection#

You can test Qvalon API via Postman. See this section for details.