Skip to main content
GET
/
api
/
v1
/
me
Get Current User
curl --request GET \
  --url https://www.catchthegoodones.com/api/v1/me
{
  "name": "Jane Smith",
  "email": "jane@example.com"
}

Request

Headers

HeaderRequiredDescription
AuthorizationYesBearer ctgo_your_api_key_here

Example

curl https://www.catchthegoodones.com/api/v1/me \
  -H "Authorization: Bearer ctgo_your_api_key_here"

Response

Returns the authenticated user’s name and email address. Useful for verifying your API key is valid.
{
  "name": "Jane Smith",
  "email": "jane@example.com"
}

Response fields

FieldTypeDescription
namestringThe user’s display name
emailstringThe user’s email address