Skip to main content
GET
/
profiles
Get All Profiles
curl --request GET \
  --url https://api.offlineprotocol.com/api/v1/profiles \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "count": {
      "all": 123,
      "hidden": 123,
      "active": 123
    },
    "profiles": [
      {
        "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.

Query Parameters

page
integer
limit
integer
reverse
boolean

Response

200 - application/json

Profiles list

data
object
I