Skip to content

Get Product

Retrieve a single product by ID.

GET /v1/products/:id

Path Parameters

ParameterDescription
idProduct ID

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",
    "description": "A WordPress plugin",
    "logoUrl": "https://example.com/logo.png",
    "bannerUrl": "https://example.com/banner.png",
    "createdAt": "2026-01-01T00:00:00.000Z",
    "updatedAt": "2026-01-15T00:00:00.000Z"
  }
}

Example

bash
curl -X GET "https://api.packedge.dev/v1/products/prd_xxx" \
  -H "Authorization: Bearer pk_your_api_key"