Skip to main content
GET
/
connect
/
{namespace}
/
{connectionId}
/
events
Poll events (unstable)
curl --request GET \
  --url https://api.smithery.ai/connect/{namespace}/{connectionId}/events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "payload": {},
      "createdAt": "<string>"
    }
  ],
  "done": true
}

Authorizations

Authorization
string
header
required

Smithery API key as Bearer token

Path Parameters

namespace
string
required
connectionId
string
required

Query Parameters

limit
integer

Maximum number of events to return (default 100, max 100)

Required range: 1 <= x <= 100

Response

Events list

data
object[]
required
done
boolean
required

True when no events remain. Client should wait and retry later.