Fetch Product

Retrieve details for a specific product by its ID.

Endpoint

GET /api/products/{product_id}

Path Parameters

ParameterTypeRequiredDescription
product_idstringYesThe unique identifier for the product

Response

Returns the product object.
{
  "id": "prod_123456789",
  "name": "Premium Service",
  "price": 99.99,
  "currency": "USD",
  "description": "Premium service package",
  "category": "Services",
  "created_at": "2023-01-01T00:00:00Z"
}