Extensions
List Extensions
Get all extensions for the authenticated user
GET
/
v1
/
extensions
curl --request GET \
--url https://api.anchorbrowser.io/v1/extensions \
--header 'anchor-api-key: <api-key>'
{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "My Custom Extension",
"manifest": {
"name": "Extension Name",
"version": "1.0.0",
"manifest_version": 3
},
"createdAt": "2024-01-01T00:00:00.000Z",
"updatedAt": "2024-01-01T00:00:00.000Z"
}
]
}
Authorizations
API key passed in the header
Response
200
application/json
List of user extensions retrieved successfully
The response is of type object
.
curl --request GET \
--url https://api.anchorbrowser.io/v1/extensions \
--header 'anchor-api-key: <api-key>'
{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "My Custom Extension",
"manifest": {
"name": "Extension Name",
"version": "1.0.0",
"manifest_version": 3
},
"createdAt": "2024-01-01T00:00:00.000Z",
"updatedAt": "2024-01-01T00:00:00.000Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.