Skip to main content
GET
/
connect
/
{namespace}
/
.subscriptions
List namespace subscriptions
curl --request GET \
  --url https://api.smithery.ai/connect/{namespace}/.subscriptions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "sub_01HW1234567890",
    "url": "https://my-app.example.com/events",
    "connection_id": "notion",
    "created_at": "2026-04-22T12:00:00.000Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://smithery.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Smithery API key as Bearer token

Path Parameters

namespace
string
required

Response

200 - application/json

Namespace subscriptions

id
string
required

Stable subscription id generated by Smithery

Example:

"sub_01HW1234567890"

url
string<uri>
required

Destination URL for webhook deliveries

Example:

"https://my-app.example.com/events"

connection_id
string | null
required

Connection scope. Null for namespace-wide subscriptions.

Example:

"notion"

created_at
string
required

ISO 8601 timestamp

Example:

"2026-04-22T12:00:00.000Z"