Products

Get product

Retrieve information about a product.

GET
/api/v1/products/{productId}
AuthorizationBearer <token>

Your API key.

In: header

Path Parameters

productIdstring

The product ID.

Response Body

application/json

curl -X GET "https://keyforge.dev/api/v1/products/p_123456"
{
  "id": "p_123456",
  "userId": "05d27bfb-61c7-45f7-9d07-09a41defc88a",
  "name": "My product",
  "description": "This is my product.",
  "supportEmail": null,
  "createdAt": "2024-05-19T04:31:03.000Z",
  "portalShow": true,
  "portalAllowDeviceReset": true,
  "hasImage": false,
  "purchaseNote": null,
  "actionButtonText": null,
  "actionButtonUrl": null
}
Empty