cURL
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 } ] } }
Retrieves a paginated list of all profiles the authenticated user owns.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Profiles list
Show child attributes