Skip to main content
GET
/
validate
Validate API key
curl --request GET \
  --url https://integrations.wellows.com/api/v1/validate \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "message": "API key is valid",
  "code": 200,
  "data": {
    "valid": true,
    "key_level": "USER",
    "user_id": 123,
    "project_id": null,
    "expiry": "2025-12-31T23:59:59Z"
  },
  "errors": {},
  "meta_data": {}
}

Authorizations

X-API-Key
string
header
required

Your API key from the API Keys page

Headers

X-Project-ID
integer

Project ID (optional - used to validate access to a specific project)

Response

API key is valid

success
boolean
Example:

true

message
string
Example:

"API key is valid"

code
integer
Example:

200

data
object
errors
object
meta_data
object