LogoLogo
SupportDashboard
  • Community
  • Welcome to Hyperbrowser
  • Get Started
    • Quickstart
      • AI Agents
        • Browser Use
        • Claude Computer Use
        • OpenAI CUA
      • Web Scraping
        • Scrape
        • Crawl
        • Extract
      • Browser Automation
        • Puppeteer
        • Playwright
        • Selenium
  • Agents
    • Browser Use
    • Claude Computer Use
    • OpenAI CUA
  • HyperAgent
    • About HyperAgent
      • HyperAgent SDK
      • HyperAgent Types
  • Quickstart
  • Multi-Page actions
  • Custom Actions
  • MCP Support
    • Tutorial
  • Examples
    • Custom Actions
    • LLM support
    • Cloud Support
      • Setting Up
      • Proxies
      • Profiles
    • MCP Examples
      • Google Sheets
      • Weather
        • Weather Server
    • Output to Schema
  • Web Scraping
    • Scrape
    • Crawl
    • Extract
  • Sessions
    • Overview
      • Session Parameters
    • Advanced Privacy & Anti-Detection
      • Stealth Mode
      • Proxies
      • Static IPs
      • CAPTCHA Solving
      • Ad Blocking
    • Profiles
    • Recordings
    • Live View
    • Extensions
    • Downloads
  • Guides
    • Model Context Protocol
    • Scraping
    • AI Function Calling
    • Extract Information with an LLM
    • Using Hyperbrowser Session
    • CAPTCHA Solving
  • Integrations
    • ⛓️LangChain
    • 🦙LlamaIndex
  • reference
    • Pricing
    • SDKs
      • Node
        • Sessions
        • Profiles
        • Scrape
        • Crawl
        • Extensions
      • Python
        • Sessions
        • Profiles
        • Scrape
        • Crawl
        • Extensions
    • API Reference
      • Sessions
      • Scrape
      • Crawl
      • Extract
      • Agents
        • Browser Use
        • Claude Computer Use
        • OpenAI CUA
      • Profiles
      • Extensions
Powered by GitBook
On this page
  • Create Profile
  • Get Profile
  • Delete Profile
  • Types
  • CreateProfileResponse
  • ProfileResponse
Export as PDF
  1. reference
  2. SDKs
  3. Python

Profiles

PreviousSessionsNextScrape

Last updated 4 months ago

Create Profile

Creates a new profile.

Method: client.profiles.create(): CreateProfileResponse

Endpoint: POST /api/profile

Response:

Example:

profile = client.profiles.create()
print(profile.id)

Get Profile

Get details of an existing profile.

Method: client.profiles.get(id: str): ProfileResponse

Endpoint: GET /api/profile/{id}

Parameters:

  • id: string - Profile ID

Response:

Example:

profile = client.profiles.get("36946080-9b81-4288-81d5-b15f2191f222")
print(profile.id)

Delete Profile

Delete an existing profile.

Method: client.profiles.delete(id: str): BasicResponse

Endpoint: DELETE /api/profile/{id}

Parameters:

  • id: string - Profile ID

Example:

response = client.profiles.delete("36946080-9b81-4288-81d5-b15f2191f222")
print(response)

Types

CreateProfileResponse

class CreateProfileResponse(BaseModel):
    id: str

ProfileResponse

class ProfileResponse(BaseModel):
    id: str
    team_id: str = Field(alias="teamId")
    created_at: datetime = Field(alias="createdAt")
    updated_at: datetime = Field(alias="updatedAt")

Response:

CreateProfileResponse
ProfileResponse
BasicResponse