For the complete documentation index, see llms.txt. This page is also available as Markdown.

Me

Get details of the authenticated organization and user

get
/me

Returns the organization and user associated with the credentials used for authentication.

Rate limit: 300 requests per minute

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Responses
200Success
application/json
request_idstringOptional

The request ID for tracking.

get/me
GET /me HTTP/1.1
Host: api.usepylon.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "data": {
    "id": "text",
    "name": "text",
    "user": {
      "email": "text",
      "id": "text"
    }
  },
  "request_id": "text"
}

Last updated

Was this helpful?