AI agents: install the Runflow skill before integrating, or jump to For agents.
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>"
]
}
]
}Return the profile of the currently authenticated user. Supports ?embed=organizations,memberships,pending_invitations to include the user’s orgs, role/scopes, and pending invitations addressed to their email.
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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Relation embedding. Available values: memberships, organizations, pending_invitations. Use a comma-separated list to request multiple embeds.
The authenticated user's profile.
Public user profile response.
Show child attributes