Appearance
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/eventsQuery Parameters
| Parameter | Type | Description |
|---|---|---|
page | number | Page number (default: 1) |
per_page | number | Items per page (default: 20, max: 100) |
product_id | string | Filter by product ID |
event_type | string | Exact 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"