Last updated 2 days ago
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", "teamId": "text", "createdAt": "text", "updatedAt": "text" } ], "totalCount": 1, "page": 1, "perPage": 1 }
POST /api/profile HTTP/1.1 Host: app.hyperbrowser.ai x-api-key: YOUR_API_KEY Accept: */*
Profile created
{ "id": "text" }
GET /api/profile/{id} HTTP/1.1 Host: app.hyperbrowser.ai x-api-key: YOUR_API_KEY Accept: */*
Profile details
{ "id": "text", "teamId": "text", "createdAt": "text", "updatedAt": "text" }
DELETE /api/profile/{id} HTTP/1.1 Host: app.hyperbrowser.ai x-api-key: YOUR_API_KEY Accept: */*
Profile deleted
{ "success": true }