Skip to content

List Sites

Retrieve all sites.

GET /v1/sites

Query Parameters

ParameterTypeDescription
pagenumberPage number (default: 1)
per_pagenumberItems per page (default: 20, max: 100)
license_idstringFilter by license ID
product_idstringFilter by product ID
statusstringFilter 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"