Profiles
List Profiles
Profiles
List Profiles
Fetches all stored profiles.
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
API key passed in the header
Response
200
application/json
List of user profiles retrieved successfully.
The response is of type object
.
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"
}
]
}
}