Skip to main content
GET
/
v1
/
auth
/
me
Get current user
curl --request GET \
  --url https://api.runflow.io/v1/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "avatar_url": "<string>",
  "timezone": "<string>",
  "locale_code": "<string>",
  "email_verified_at": "2023-11-07T05:31:56Z",
  "memberships": [
    {
      "org": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "slug": "<string>",
        "plan_code": "<string>"
      },
      "role_code": "<string>",
      "scopes": [
        "<string>"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.runflow.io/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

embed
string | null

Relation embedding. Available values: memberships, organizations, pending_invitations. Use a comma-separated list to request multiple embeds.

Response

The authenticated user's profile.

Public user profile response.

id
string<uuid>
required
email
string
required
first_name
string | null
required
last_name
string | null
required
avatar_url
string | null
required
timezone
string | null
required
locale_code
string | null
required
email_verified_at
string<date-time> | null
required
memberships
MembershipContext · object[] | null