GET
/
v1
/
profiles
JavaScript
import Anchorbrowser from 'anchorbrowser';

const client = new Anchorbrowser({
  apiKey: 'My API Key',
});

const profiles = await client.profiles.list();

console.log(profiles.data);
{
  "data": {
    "count": 123,
    "items": [
      {
        "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

anchor-api-key
string
header
required

API key passed in the header

Response

200
application/json

List of user profiles retrieved successfully.

The response is of type object.