Skip to main content
GET
/
v1
/
me
Get the authenticated user's profile
curl --request GET \
  --url https://api.snitcher.com/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": 123,
    "email": "user@example.com",
    "first_name": "John",
    "last_name": "Doe"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.snitcher.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your personal access token (PAT) to authenticate

Response

User profile

success
boolean
Example:

true

data
object