Skip to main content
GET
/
profiles
/
{username}
Get Profile
curl --request GET \
  --url https://api.offlineprotocol.com/api/v1/profiles/{username} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "profile": {
      "username": "<string>",
      "about": "<string>",
      "socials": {
        "x": "<string>",
        "telegram": "<string>",
        "website": "<string>",
        "discord": "<string>"
      },
      "location": {
        "latitude": 123,
        "longitude": 123
      },
      "hidden": false
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

username
string
required

Response

200 - application/json

Profile details

data
object
I