Appearance
List Sites
Retrieve all sites.
GET /v1/sitesQuery Parameters
| Parameter | Type | Description |
|---|---|---|
page | number | Page number (default: 1) |
per_page | number | Items per page (default: 20, max: 100) |
license_id | string | Filter by license ID |
product_id | string | Filter by product ID |
status | string | Filter by status: active, deactivated |
Response
json
{
"data": [
{
"id": "act_xxx",
"licenseId": "lic_xxx",
"url": "https://example.com",
"status": "active",
"ip": "192.168.1.1",
"activatedAt": "2026-02-06T00:00:00.000Z"
}
],
"meta": {
"page": 1,
"perPage": 20,
"total": 25,
"totalPages": 2
}
}Example
bash
curl -X GET "https://api.packedge.dev/v1/sites?license_id=lic_xxx" \
-H "Authorization: Bearer pk_your_api_key"