Skip to main content
GET
/
profiles
python
from notte_sdk import NotteClient

notte = NotteClient()
# List all profiles with pagination
profiles = notte.profiles.list(page=1, page_size=10)
for profile in profiles:
    print(f"Profile: {profile.profile_id}, name: {profile.name}")
{
  "items": [
    {
      "profile_id": "<string>",
      "name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "persisted_domains": [
        "<string>"
      ]
    }
  ],
  "page": 123,
  "page_size": 123,
  "has_next": true,
  "has_previous": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.notte.cc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

x-notte-request-origin
string | null
x-notte-sdk-version
string | null

Query Parameters

page
integer
default:1

Page number

Required range: x >= 1
page_size
integer
default:10

Number of items per page

Required range: 1 <= x <= 100
name
string | null

Filter profiles by name

Response

Successful Response

items
ProfileResponse · object[]
required
page
integer
required
page_size
integer
required
has_next
boolean
required
has_previous
boolean
required
read-only