Appearance
Get Site
Retrieve a single site by ID.
GET /v1/sites/:idPath Parameters
| Parameter | Description |
|---|---|
id | Site ID |
Response
json
{
"data": {
"id": "act_xxx",
"licenseId": "lic_xxx",
"url": "https://example.com",
"status": "active",
"ip": "192.168.1.1",
"userAgent": "WordPress/6.4",
"activatedAt": "2026-02-06T00:00:00.000Z",
"license": {
"id": "lic_xxx",
"licenseKey": "MYPLUGIN-XXXX-XXXX-XXXX-XXXX",
"productId": "prd_xxx"
}
}
}Example
bash
curl -X GET "https://api.packedge.dev/v1/sites/act_xxx" \
-H "Authorization: Bearer pk_your_api_key"