GET
/
products
/
{id}
curl https://api.contazen.ro/v1/products/prod_5f6g7h8i9j \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
  "success": true,
  "data": {
    "id": "prod_5f6g7h8i9j",
    "object": "product",
    "name": "Laptop Dell XPS 15",
    "description": "High-performance laptop with 15.6\" display",
    "currency": "RON",
    "price": 5000.00,
    "vat_rate": 19,
    "unit_of_measure": "buc",
    "ubl_um": "H87",
    "ubl_nc": "84713000",
    "ubl_cpv": null,
    "created_at": 1704067200,
    "modified_at": 1710460800
  },
  "meta": {
    "version": "v1",
    "response_time": "23.45ms"
  }
}

Request

id
string
required
The product ID (ID) to retrieve

Response

success
boolean
Indicates if the request was successful
data
object
The product object
meta
object
Response metadata including version and response time
curl https://api.contazen.ro/v1/products/prod_5f6g7h8i9j \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
  "success": true,
  "data": {
    "id": "prod_5f6g7h8i9j",
    "object": "product",
    "name": "Laptop Dell XPS 15",
    "description": "High-performance laptop with 15.6\" display",
    "currency": "RON",
    "price": 5000.00,
    "vat_rate": 19,
    "unit_of_measure": "buc",
    "ubl_um": "H87",
    "ubl_nc": "84713000",
    "ubl_cpv": null,
    "created_at": 1704067200,
    "modified_at": 1710460800
  },
  "meta": {
    "version": "v1",
    "response_time": "23.45ms"
  }
}

Notes

  • The product data structure is identical to what’s returned in the list endpoint
  • All fields are returned for individual product retrieval
  • Products are firm-specific - you can only retrieve products belonging to your authenticated firm