Get current user
curl --request GET \
--url https://api.agg.market/users/me \
--header 'Authorization: Bearer <token>' \
--header 'x-app-id: <api-key>'{
"id": "<string>",
"username": "<string>",
"avatarUrl": "<string>",
"externalId": "<string>",
"isLocationBlocked": true,
"accounts": [
{
"providerAccountId": "<string>"
}
],
"wallets": [
{
"address": "<string>"
}
],
"venueAccounts": [
{
"id": "<string>",
"status": "<string>",
"kycStatus": "<string>"
}
]
}Users
Get current user
Returns the authenticated user’s profile.
GET
/
users
/
me
Get current user
curl --request GET \
--url https://api.agg.market/users/me \
--header 'Authorization: Bearer <token>' \
--header 'x-app-id: <api-key>'{
"id": "<string>",
"username": "<string>",
"avatarUrl": "<string>",
"externalId": "<string>",
"isLocationBlocked": true,
"accounts": [
{
"providerAccountId": "<string>"
}
],
"wallets": [
{
"address": "<string>"
}
],
"venueAccounts": [
{
"id": "<string>",
"status": "<string>",
"kycStatus": "<string>"
}
]
}Authorizations
Your application ID. Required for all app-tier and user-tier routes.
JWT access token returned by POST /auth/verify. Required for user-tier routes.
Response
200
⌘I