GET
/
verify
Verify API Key
curl --request GET \
  --url https://api.kakiyo.com/v1/verify \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "API key is valid",
  "teamId": "abcdefghij1234567890"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

API key verification successful

status
string
Example:

"success"

message
string
Example:

"API key is valid"

teamId
string
Example:

"abcdefghij1234567890"