GET STARTED
Quickstart
Authenticate and make your first request against the Clario360 API.
Last updated July 18, 2026 · 6 min read#Before you start
- A Clario360 tenant with API access enabled
- An API key or access token with the required resource scopes
- The deployment-specific base URL issued by your administrator
#Make your first request
- 1Create credentials
Create a least-privilege key through the governed API-key administration surface.
- 2Export the key
Store the key in your shell or secret manager. Never commit it to source control.
- 3Call the API
Send an API key with X-API-Key, or an access token as a Bearer credential.
bash
export CLARIO360_API_URL="http://localhost:8080"
export CLARIO360_API_KEY="••••••••"
curl "$CLARIO360_API_URL/api/v1/cyber/alerts?per_page=5" \
-H "X-API-Key: $CLARIO360_API_KEY" \
-H "Accept: application/json"json
{
"data": [],
"pagination": {
"limit": 10,
"next_cursor": null
},
"request_id": "req_01J..."
}#Next steps
- Review authentication and token lifecycle guidance
- Install the Python SDK for typed resources and retries
- Choose the product API reference that matches your licensed suite
Was this page helpful?