API

Validia API Documentation

Creating Credentials

Setting up credentials to access the Validia API has never been easier. Simply visit your profile page in the top right of the Validia Admin Dashboard and click on "Create API Credentials"

Profile view with API credential creation

This will open a modal with a Client ID, Client Secret, and API Key. These three parameters can be used with the following command to generate an access key and refresh token for our API.

curl -X POST "https://api.validia.ai/api/auth" \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "vld_your_api_key",
    "client_id": "your_client_id",
    "client_secret": "your_client_secret"
  }'
API credential generation

Getting Started

Once you have credentials generated, you can start using the full extent of our API. For all available endpoints, documentation on calling key endpoints, and more details on specific parameters, visit our API documentation below

Last updated

Was this helpful?