Skip to main content
GET
/
merchants
/
{merchant_id}
/
products
/
{product_category_id}
Get Merchant Products
curl --request GET \
  --url https://sandbox-api.prava.space/v1/merchants/{merchant_id}/products/{product_category_id} \
  --header 'Api-Key: <api-key>'
{
  "data": {
    "merchant_id": "m1e2r3c4-h5a6-n7t8-9012-3456789abcde",
    "category_code": "laptops",
    "products": [
      {
        "product_id": "p1r2o3d4-u5c6-t7s8-9012-3456789abcde",
        "name": "Example Laptop",
        "description": "A powerful and lightweight laptop.",
        "price": "1200.00",
        "currency": "USD",
        "inventory": 50,
        "image_url": "https://example.com/laptop.jpg"
      }
    ]
  },
  "meta": {
    "request_id": "req_12345",
    "timestamp": "2025-10-15T05:36:43.000Z"
  }
}

Authorizations

Api-Key
string
header
required

Path Parameters

merchant_id
string<uuid>
required
product_category_id
string
required

Query Parameters

page
integer
default:1
page_size
integer
default:20

Response

A list of products.

The response is of type any.

I