curl --request POST \
--url https://octanist.com/api/check \
--header 'X-API-KEY: <api-key>'{
"success": true
}Validate that your API key is working correctly
curl --request POST \
--url https://octanist.com/api/check \
--header 'X-API-KEY: <api-key>'{
"success": true
}curl -X POST \
-H "X-API-KEY: your_api_key" \
"https://octanist.com/api/check"
{
"success": true
}
| Status | Code | Description |
|---|---|---|
| 401 | UNAUTHORIZED | Missing or invalid API key |