---
title: "List extensions"
method: GET
path: "/api/v1/databases/{database_id}/extensions"
tags: ["Managed Databases"]
---

# List extensions

`GET /api/v1/databases/{database_id}/extensions`

The PostgreSQL extension allowlist with the installed state of each extension. Valkey has no extensions — the list is empty.

## Path parameters

- `database_id` string, required

## Response `200`

Extension catalog with installed state

- object
  - `success` boolean
  - `extensions` DatabaseExtension[]
    - `name` string — Extension name, used with `POST /api/v1/databases/{database_id}/extensions`
    - `display_name` string
    - `description` string
    - `installed` boolean — Whether the extension is currently installed
    - `version` string — Installed version (empty when not installed)

## Other responses

- `401` — Authentication required
- `404` — Resource not found

---

[API](https://skmtc.dev/rafftechnologies/apis/raff-api.md) · [All operations](https://skmtc.dev/rafftechnologies/apis/raff-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rafftechnologies/raff-api/revisions/2f4df56be77c/schema)
