Skip to main content
POST
/
api
/
canary
/
authentication
/
api-key
/
verify
Verify API Key
curl --request POST \
  --url http://localhost:3000/api/canary/authentication/api-key/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "key": "pk_live_12345..."
}
'
{
  "statusCode": 400,
  "message": [
    "Invalid input data"
  ],
  "error": "Bad Request"
}

Body

application/json
key
string
required

The API key to verify

Example:

"pk_live_12345..."

Response

API key verified successfully