Skip to main content
GET
/
api
/
profiles
List Profiles
curl --request GET \
  --url https://api.anchorbrowser.io/api/profiles \
  --header 'anchor-api-key: <api-key>'
[
  {
    "name": "my-profile",
    "description": "This is a profile description.",
    "source": "session",
    "created_at": "2024-01-01T12:00:00Z"
  }
]

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Response

List of user profiles retrieved successfully.

name
string

The name of the profile.

Example:

"my-profile"

description
string

A brief description of the profile.

Example:

"This is a profile description."

source
string

The source of the profile data.

Example:

"session"

created_at
string<date-time>

The timestamp when the profile was created.

Example:

"2024-01-01T12:00:00Z"

I