Authorizations
Path Parameters
Response
The requested product.
The response is of type any
.
Prava sandbox is live! Join here
curl --request GET \
--url https://sandbox-api.prava.space/v1/merchants/products/{product_id} \
--header 'Api-Key: <api-key>'
{
"data": {
"product_id": "p1r2o3d4-u5c6-t7s8-9012-3456789abcde",
"name": "Example Laptop",
"description": "A powerful and lightweight laptop.",
"category": "laptops",
"price": "1200.00",
"currency": "USD",
"inventory": 50,
"merchant": {
"merchant_id": "m1e2r3c4-h5a6-n7t8-9012-3456789abcde",
"name": "Example Merchant",
"category_code": "electronics"
},
"images": [
"https://example.com/laptop_front.jpg",
"https://example.com/laptop_side.jpg"
]
},
"meta": {
"request_id": "req_12345",
"timestamp": "2025-10-15T05:36:43.000Z"
}
}
Retrieves a specific product.
curl --request GET \
--url https://sandbox-api.prava.space/v1/merchants/products/{product_id} \
--header 'Api-Key: <api-key>'
{
"data": {
"product_id": "p1r2o3d4-u5c6-t7s8-9012-3456789abcde",
"name": "Example Laptop",
"description": "A powerful and lightweight laptop.",
"category": "laptops",
"price": "1200.00",
"currency": "USD",
"inventory": 50,
"merchant": {
"merchant_id": "m1e2r3c4-h5a6-n7t8-9012-3456789abcde",
"name": "Example Merchant",
"category_code": "electronics"
},
"images": [
"https://example.com/laptop_front.jpg",
"https://example.com/laptop_side.jpg"
]
},
"meta": {
"request_id": "req_12345",
"timestamp": "2025-10-15T05:36:43.000Z"
}
}
The requested product.
The response is of type any
.