Appearance
List Audit Logs
Paginated audit log for your account — who did what, when, and from which IP.
GET /v1/logsRequires a Business plan (402 on lower tiers).
Query Parameters
| Parameter | Type | Description |
|---|---|---|
page | number | Page number (default: 1) |
per_page | number | Items per page (default: 20, max: 100) |
action | string | Filter by action, e.g. license.created |
Response
json
{
"data": [
{
"id": "xxx",
"action": "license.created",
"entityType": "license",
"entityId": "lic_xxx",
"metadata": null,
"ipAddress": "203.0.113.7",
"createdAt": "2026-06-12T09:58:00Z"
}
],
"meta": {
"page": 1,
"perPage": 20,
"total": 230,
"totalPages": 12
}
}Example
bash
curl -X GET "https://api.packedge.dev/v1/logs?action=license.created" \
-H "Authorization: Bearer pk_your_api_key"Notes
- Actions performed via the Developer API are logged too, so this endpoint doubles as an API usage trail
