mallow docs

Public profile by address

GET
/v1/users/{address}

Retrieves a user profile by wallet address. Returns the user's public profile information including linked addresses, display name, bio, and social links.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Path Parameters

address*string

Wallet address to look up (base58).

Length1 <= length

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/users/string"
{  "result": {    "addresses": [      "string"    ],    "username": "string",    "displayName": "string",    "bio": "string",    "imageUrl": "string",    "bannerUrl": "string",    "website": "string",    "twitter": {      "username": "string"    },    "roles": [      "admin"    ]  }}