Profiles
Authorizations
Body
namestringOptional
Responses
200
Profile created
application/json
post
POST /api/profile HTTP/1.1
Host: api.hyperbrowser.ai
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}
200
Profile created
{
"id": "text",
"name": "text"
}
Authorizations
Path parameters
idstringRequired
Responses
200
Profile details
application/json
404
Profile not found
application/json
get
GET /api/profile/{id} HTTP/1.1
Host: api.hyperbrowser.ai
x-api-key: YOUR_API_KEY
Accept: */*
{
"id": "text",
"name": "text",
"teamId": "text",
"createdAt": "text",
"updatedAt": "text"
}
Authorizations
Query parameters
pagenumberOptionalDefault:
1
limitnumberOptionalDefault:
10
namestringOptional
Responses
200
List of profiles
application/json
400
Invalid query parameters
application/json
500
Server error
application/json
get
GET /api/profiles HTTP/1.1
Host: api.hyperbrowser.ai
x-api-key: YOUR_API_KEY
Accept: */*
{
"profiles": [
{
"id": "text",
"name": "text",
"teamId": "text",
"createdAt": "text",
"updatedAt": "text"
}
],
"totalCount": 1,
"page": 1,
"perPage": 1
}
Last updated