Profiles
Get Profile
Profiles
Get Profile
Retrieves details of a specific profile by its name.
GET
/
v1
/
profiles
/
{name}
curl --request GET \
--url https://api.anchorbrowser.io/v1/profiles/{name} \
--header 'anchor-api-key: <api-key>'
{
"data": {
"name": "my-profile",
"description": "This is my profile description.",
"source": "session",
"session_id": "550e8400-e29b-41d4-a716-446655440000",
"store_cache": true,
"status": "active",
"created_at": "2024-01-01T12:00:00Z"
}
}
Authorizations
API key passed in the header
Path Parameters
The name of the profile to retrieve.
Example:
"my-profile"
Response
200
application/json
Profile details retrieved successfully.
The name of the profile.
Example:
"my-profile"
A description of the profile.
Example:
"This is my profile description."
The source of the profile data.
Available options:
session
Example:
"session"
The browser session ID used to create this profile, if applicable.
Example:
"550e8400-e29b-41d4-a716-446655440000"
Whether the profile stores browser cache.
Example:
true
The current status of the profile.
Example:
"active"
The timestamp when the profile was created.
Example:
"2024-01-01T12:00:00Z"
curl --request GET \
--url https://api.anchorbrowser.io/v1/profiles/{name} \
--header 'anchor-api-key: <api-key>'
{
"data": {
"name": "my-profile",
"description": "This is my profile description.",
"source": "session",
"session_id": "550e8400-e29b-41d4-a716-446655440000",
"store_cache": true,
"status": "active",
"created_at": "2024-01-01T12:00:00Z"
}
}