---
title: "Get a specific addon"
method: GET
path: "/api/admin/addons/{id}"
tags: ["Addons"]
---

# Get a specific addon

`GET /api/admin/addons/{id}`

Retrieve information about the addon whose ID matches the ID in the request URL.

## Path parameters

- `id` string, required

## Response `200`

addonSchema

- AddonSchema — An [addon](https://docs.getunleash.io/integrate) instance description. Contains data about what kind of provider it uses, whether it's enabled or not, what events it listens for, and more.
  - `id` integer, required — The addon's unique identifier.
  - `provider` string, required — The addon provider, such as "webhook" or "slack".
  - `description` string, nullable, required — A description of the addon. `null` if no description exists.
  - `enabled` boolean, required — Whether the addon is enabled or not.
  - `parameters` object, required — Parameters for the addon provider. This object has different required and optional properties depending on the provider you choose.
  - `events` string[], required — The event types that trigger this specific addon.
  - `projects` string[] — The projects that this addon listens to events from. An empty list means it listens to events from **all** projects.
  - `environments` string[] — The list of environments that this addon listens to events from. An empty list means it listens to events from **all** environments.

## Other responses

- `401` — Authorization information is missing or invalid. Provide a valid API token as the `authorization` header, e.g. `authorization:*.*.my-admin-token`.

---

[API](https://skmtc.net/unleash/apis/unleash-api-3.md) · [All operations](https://skmtc.net/unleash/apis/unleash-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unleash/unleash-api-3/revisions/b2c3116e633e/schema)
