GET
/
v1
/
extensions
/
{id}
JavaScript
import Anchorbrowser from 'anchorbrowser';

const client = new Anchorbrowser({
  apiKey: 'My API Key',
});

const extension = await client.extensions.retrieve('550e8400-e29b-41d4-a716-446655440000');

console.log(extension.id);
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "My Custom Extension",
  "manifest": {
    "name": "Extension Name",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "Extension description",
    "permissions": [
      "activeTab",
      "storage"
    ]
  },
  "createdAt": "2024-01-01T00:00:00.000Z",
  "updatedAt": "2024-01-01T00:00:00.000Z"
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

id
string<uuid>
required

The ID of the extension to retrieve

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

200
application/json

Extension details retrieved successfully

The response is of type object.