Skip to content

GET /v1/me

Returns the profile of the user associated with the API key used. Useful for validating a key and inspecting plan limits.

GET /api/v1/me
Authorization: Bearer twa_your_key_here

No parameters.

{
"id": "018e1234-abcd-7000-8000-000000000001",
"email": "alice@example.com",
"full_name": "Alice Dupont",
"plan": {
"name": "PRO",
"slug": "pro",
"max_api_calls_per_hour": -1
}
}
FieldTypeDescription
idstring (UUID)Unique user identifier
emailstringAccount email address
full_namestring | nullFull name (null if not set)
planobject | nullActive plan information
plan.namestringPlan name (BASIC, PLUS, PRO)
plan.slugstringPlan slug (basic, plus, pro)
plan.max_api_calls_per_hourintegerHourly call limit (-1 = unlimited, 0 = no access)
Fenêtre de terminal
curl -s \
-H "Authorization: Bearer twa_your_key_here" \
https://app.techwatchalert.com/api/v1/me | jq .