Authentication
All API requests must include your API key in the X-API-Key header.
API Key Format
API keys are prefixed with nxr_live_ and can be generated from the Nexor dashboard.
Usage
Include the header in every request:
curl https://api.getnexor.ai/api/public/workflows \
-H "X-API-Key: nxr_live_your_api_key"
Error Responses
Missing API Key
{
"error": "Missing API key",
"message": "Please provide your API key in the X-API-Key header"
}
Status: 401 Unauthorized
Invalid API Key
{
"error": "Invalid API key",
"message": "The provided API key is not valid"
}
Status: 401 Unauthorized