Extensions

Add a new extension

post
Authorizations
Body
filestring · binaryRequired
namestringOptional
Responses
200
Extension added successfully
application/json
post
POST /api/extensions/add HTTP/1.1
Host: api.hyperbrowser.ai
x-api-key: YOUR_API_KEY
Content-Type: multipart/form-data
Accept: */*
Content-Length: 31

{
  "file": "binary",
  "name": "text"
}
200

Extension added successfully

{
  "id": "text",
  "name": "text",
  "createdAt": "text",
  "updatedAt": "text"
}

List all extensions

get
Authorizations
Responses
200
Extension added successfully
application/json
get
GET /api/extensions/list HTTP/1.1
Host: api.hyperbrowser.ai
x-api-key: YOUR_API_KEY
Accept: */*
200

Extension added successfully

[
  {
    "id": "text",
    "name": "text",
    "createdAt": "text",
    "updatedAt": "text"
  }
]

Last updated