Check API Key

Verifies that an API key is valid and active (not revoked).

Endpoint

MethodPath
GET/account/check_api_key

Request

Method: GET. Header: Api-Key (required). Body: None.

Replace YOUR_UPSCALE_API_KEY with a real API key from the configurator.

Example request

curl -X GET "https://app.upscaleoutreach.com/account/check_api_key" \
  -H "Api-Key: YOUR_UPSCALE_API_KEY"

Response

Success (200 OK): authorized: true

Error (401 Unauthorized)

Missing, invalid, or revoked key returns a JSON error in the same shape. See tabs for example bodies.

Success (200 OK)

{
  "authorized": true
}