Last updated 5 days ago
DELETE /api/profile/{id} HTTP/1.1 Host: app.hyperbrowser.ai x-api-key: YOUR_API_KEY Accept: */*
Profile deleted
{ "success": true }
1
10
GET /api/profiles HTTP/1.1 Host: app.hyperbrowser.ai x-api-key: YOUR_API_KEY Accept: */*
List of profiles
{ "profiles": [ { "id": "text", "name": "text", "teamId": "text", "createdAt": "text", "updatedAt": "text" } ], "totalCount": 1, "page": 1, "perPage": 1 }
GET /api/profile/{id} HTTP/1.1 Host: app.hyperbrowser.ai x-api-key: YOUR_API_KEY Accept: */*
Profile details
{ "id": "text", "name": "text", "teamId": "text", "createdAt": "text", "updatedAt": "text" }
POST /api/profile HTTP/1.1 Host: app.hyperbrowser.ai x-api-key: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 15 { "name": "text" }
Profile created
{ "id": "text", "name": "text" }