Skip to main content
POST
/
api
/
check
Check API Key
curl --request POST \
  --url https://octanist.com/api/check \
  --header 'X-API-KEY: <api-key>'
{
  "success": true
}
Useful for integration testing (e.g., Zapier connection setup).

Example Request

curl -X POST \
  -H "X-API-KEY: your_api_key" \
  "https://octanist.com/api/check"

Example Response (200 OK)

{
  "success": true
}

Error Responses

StatusCodeDescription
401UNAUTHORIZEDMissing or invalid API key

Authorizations

X-API-KEY
string
header
required

API key for authentication

Response

API key is valid

success
boolean
Example:

true