Appearance
List Products
Retrieve all products in your account.
GET /v1/productsQuery Parameters
| Parameter | Type | Description |
|---|---|---|
page | number | Page number (default: 1) |
per_page | number | Items per page (default: 20, max: 100) |
status | string | Filter by status: active, draft, archived |
Response
json
{
"data": [
{
"id": "prd_xxx",
"name": "My Plugin",
"slug": "my-plugin",
"productType": "plugin",
"status": "active",
"publicKey": "pk_xxx",
"isPremium": true,
"requiresLicense": true,
"managesReleases": true,
"licensePrefix": "MYPLUGIN",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-15T00:00:00.000Z"
}
],
"meta": {
"page": 1,
"perPage": 20,
"total": 5,
"totalPages": 1
}
}Example
bash
curl -X GET "https://api.packedge.dev/v1/products?status=active" \
-H "Authorization: Bearer pk_your_api_key"