Skip to main content
GET
/
verify
Verify Token
curl --request GET \
  --url https://www.corgea.app/api/v1/verify \
  --header 'CORGEA-TOKEN: <api-key>'
{
  "status": "ok",
  "user": {
    "id": 123,
    "email": "<string>",
    "name": "<string>",
    "company": {
      "id": 123,
      "name": "<string>"
    }
  }
}

Authorizations

CORGEA-TOKEN
string
header
required

API key for authentication

Query Parameters

user_info
boolean
default:false

Whether to include user information in the response

Response

Token is valid

status
string
Example:

"ok"

user
object

User information (only included if user_info=true)

I