Skip to content

List Events

Paginated SDK/event feed across all products in your account — license validations and activations, update checks, installs/uninstalls, and your own custom SDK events.

GET /v1/events

Query Parameters

ParameterTypeDescription
pagenumberPage number (default: 1)
per_pagenumberItems per page (default: 20, max: 100)
product_idstringFilter by product ID
event_typestringExact event type, e.g. license.validated, update.checked

Response

json
{
  "data": [
    {
      "id": "evt_xxx",
      "eventType": "license.activated",
      "licenseId": "lic_xxx",
      "productId": "prd_xxx",
      "productName": "My Plugin",
      "domain": "customer-site.com",
      "ipAddress": "203.0.113.7",
      "payload": { "version": "1.4.0" },
      "createdAt": "2026-06-12T09:58:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "perPage": 20,
    "total": 4521,
    "totalPages": 227
  }
}

Example

bash
curl -X GET "https://api.packedge.dev/v1/events?event_type=license.activated&per_page=50" \
  -H "Authorization: Bearer pk_your_api_key"