Skip to main content
GET
/
events
Retrieve a list of events
curl --request GET \
  --url https://panel.sendcloud.sc/api/v3/events \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "user_id": 123456,
      "organization_id": 789012,
      "resource_type": "shipment",
      "operation": "create",
      "resource_id": "b7c82d93-4429-5992-9806-561d848dg3b5",
      "timestamp": "2026-06-15T11:11:41.484461Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic Authentication using API key and secrets is currently the main authentication mechanism.

Query Parameters

cursor
string

The cursor query string is used as the pivot value to filter results. If no value is provided, the first page of results will be returned. To get this value, you must encode the offset, reverse and position into a base64 string.

There are 3 possible parameters to encode:

  • o: Offset
  • r: Reverse
  • p: Position

For example, r=1&p=300 encoded as a base64 string would be cj0xJnA9MzAw. The query string would then be cursor=cj0xJnA9MzAw.

Example:

"cj0xJnA9MzAw"

page_size
integer

The size of the page to fetch.

Required range: x <= 100
resource_type
enum<string>

Filter events by resource type.

Available options:
shipment
resource_id
string

Filter events by the identifier of the affected resource.

operation
enum<string>

Filter events by operation type.

Available options:
create,
update,
delete
start_datetime
string<date-time>

Include events at or after this timestamp (ISO 8601).

end_datetime
string<date-time>

Include events at or before this timestamp (ISO 8601).

Response

OK

data
Event · object[]

A list of events for the organization.