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 my profile description.",
"source": "session",
"session_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "active",
"created_at": "2024-01-01T12:00:00Z"
}
]
}
}
Fetches all stored 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 my profile description.",
"source": "session",
"session_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "active",
"created_at": "2024-01-01T12:00:00Z"
}
]
}
}
API key passed in the header
List of user profiles retrieved successfully.
The response is of type object
.