> For the complete documentation index, see [llms.txt](https://dev-docs.tasknet.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev-docs.tasknet.co/reference/api-reference/extensions.md).

# Extensions

## ListExtensions

> Retrieves a list of all available browser extensions that can be added to fingerprints. These extensions can enhance browser functionality for specific use cases.

```json
{"openapi":"3.0.1","info":{"title":"tasknet-api","version":"1.0.0"},"tags":[{"name":"Extensions","description":"For listing available extensions and retrieving detailed extension information."}],"servers":[{"url":"https://api.tasknet.co"}],"security":[{"ApiKey":[],"ApiKeyUUID":[]}],"components":{"securitySchemes":{"ApiKey":{"type":"apiKey","in":"header","name":"X-Api-Key"}},"schemas":{"Extension":{"type":"object","required":["description","extensionUUID","name","url"],"properties":{"description":{"type":"string","description":"Brief description of the extension's functionality"},"extensionUUID":{"type":"string","format":"uuid"},"name":{"type":"string"},"url":{"type":"string","format":"uri"}}},"BaseError":{"type":"object","required":["message","code"],"properties":{"message":{"type":"string"},"code":{"type":"string"},"details":{}}}}},"paths":{"/{mode}/v1/extensions":{"get":{"tags":["Extensions"],"summary":"ListExtensions","description":"Retrieves a list of all available browser extensions that can be added to fingerprints. These extensions can enhance browser functionality for specific use cases.","parameters":[{"name":"mode","in":"path","schema":{"type":"string"},"required":true}],"responses":{"200":{"description":"List of available extensions","content":{"application/json":{"schema":{"type":"object","properties":{"extensions":{"type":"array","items":{"$ref":"#/components/schemas/Extension"}}}}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseError"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseError"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseError"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseError"}}}}}}}}}
```

## GetExtension

> Retrieves detailed information about a specific browser extension, including its name, description, and installation URL.

```json
{"openapi":"3.0.1","info":{"title":"tasknet-api","version":"1.0.0"},"tags":[{"name":"Extensions","description":"For listing available extensions and retrieving detailed extension information."}],"servers":[{"url":"https://api.tasknet.co"}],"security":[{"ApiKey":[],"ApiKeyUUID":[]}],"components":{"securitySchemes":{"ApiKey":{"type":"apiKey","in":"header","name":"X-Api-Key"}},"schemas":{"Extension":{"type":"object","required":["description","extensionUUID","name","url"],"properties":{"description":{"type":"string","description":"Brief description of the extension's functionality"},"extensionUUID":{"type":"string","format":"uuid"},"name":{"type":"string"},"url":{"type":"string","format":"uri"}}},"BaseError":{"type":"object","required":["message","code"],"properties":{"message":{"type":"string"},"code":{"type":"string"},"details":{}}}}},"paths":{"/{mode}/v1/extensions/{extensionUUID}":{"get":{"tags":["Extensions"],"summary":"GetExtension","description":"Retrieves detailed information about a specific browser extension, including its name, description, and installation URL.","parameters":[{"name":"mode","in":"path","schema":{"type":"string"},"required":true},{"name":"extensionUUID","in":"path","schema":{"type":"string"},"required":true}],"responses":{"200":{"description":"Extension details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Extension"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseError"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseError"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseError"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BaseError"}}}}}}}}}
```
