Authentication
All API requests must be authenticated using an API key.API Key Header
Include your API key in theX-Api-Key header for all requests:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to authenticate with the Solute backend API
X-Api-Key header for all requests:
curl -X POST https://api.solute.dev/api/events \
-H "Content-Type: application/json" \
-H "X-Api-Key: your_api_key_here" \
-d '{...}'
{
"error": {
"code": "INVALID_API_KEY",
"message": "Invalid or missing API key"
},
"statusCode": 401
}
