GET
/
v1
/
profiles
curl --request GET \
  --url https://api.anchorbrowser.io/v1/profiles \
  --header 'anchor-api-key: <api-key>'
{
  "data": {
    "count": 123,
    "items": [
      {
        "name": "my-profile",
        "description": "This is a profile description.",
        "source": "session",
        "store_cache": true,
        "created_at": "2024-01-01T12:00:00Z"
      }
    ]
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Response

200
application/json
List of user profiles retrieved successfully.
data
object