Appearance
SDK Status
Check whether a product's SDK/telemetry integration is sending events. A product counts as connected as soon as any event lands for it — regardless of plan or event type.
GET /v1/products/:id/sdk/statusPath Parameters
| Parameter | Description |
|---|---|
id | Product ID |
Response
json
{
"data": {
"connected": true,
"eventCount": 4521,
"lastEventAt": "2026-06-12T09:58:00Z",
"lastEventType": "license.validated"
}
}| Field | Description |
|---|---|
connected | true once at least one event has been received. |
eventCount | Total events ever received for the product. |
lastEventAt / lastEventType | Most recent event (omitted when none). |
Example
bash
curl -X GET "https://api.packedge.dev/v1/products/prd_xxx/sdk/status" \
-H "Authorization: Bearer pk_your_api_key"Notes
- Use this to verify a fresh SDK install is reporting — no plan gate, so it works on every tier
