GET
/
sources
/
{id}
/
event_summaries
Get Source Events
curl --request GET \
  --url https://api.pipedream.com/v1/sources/{id}/event_summaries
Retrieve up to the last 100 events emitted by a source.

Endpoint

GET /sources/{id}/event_summaries

Notes and Examples

The event data for events larger than 1KB may get truncated in the response. If you’re processing larger events, and need to see the full event data, pass ?expand=event:
GET /sources/{id}/event_summaries?expand=event
Pass ?limit=N to retrieve the last N events:
GET /sources/{id}/event_summaries?limit=10