Skip to main content
GET
/
api
/
settings
/
profile
Get the authenticated user's profile.
curl --request GET \
  --url https://openagents.com/api/settings/profile \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "avatar": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "email": "<string>",
    "id": 123,
    "name": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Response

Authenticated user profile

data
object