Skip to main content
GET
https://api.sitespeak.ai
/
v1
/
me
curl -X GET https://api.sitespeak.ai/v1/me \
  -H "Accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Headers

NameTypeDescription
Accept*Stringapplication/json
Authorization*StringBearer
curl -X GET https://api.sitespeak.ai/v1/me \
  -H "Accept: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Response

{
  "user": {
    "id": "",
    "name": "Your Name",
    "email": "your.email@example.com",
    "social_id": null,
    "social_type": null,
    "current_team_id": null,
    "profile_photo_path": null,
    "created_at": "2023-06-20T18:05:18.000000Z",
    "updated_at": "2023-09-24T12:11:48.000000Z",
    "avatar": "",
    "profile_photo_url": ""
  }
}
Last modified on January 22, 2026