/api/v0

Getting Started

The Arva API is a JSON over HTTP API that allows you to interact with the Arva platform programatically. The API can be found at:

https://platform.arva-ai.com/api/v0

In order to interact with the API, you must first generate an API key. You can generate and revoke API keys in the API keys tab of the Arva platform. Remember to keep your API keys secure and not share them with anyone.

Once you have generated an API key, you can use it to authenticate your requests to the API. To authenticate your requests, you will need to include your API key as a bearer token in the Authorization header. These docs will include examples in cURL and Python, but the API can be interacted with with any HTTP client.

curl -X POST https://platform.arva-ai.com/api/v0/<endpoint> \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-d '<request_body>'

Next, see how you can open a new case with the API.