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.
Total number of profiles
The name of the profile.
Example:
"my-profile"
A brief description of the profile.
Example:
"This is a profile description."
The source of the profile data.
Available options:
session
Example:
"session"
Whether the profile stores browser cache.
Example:
true
The timestamp when the profile was created.
Example:
"2024-01-01T12:00:00Z"
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"
}
]
}
}