Skip to main content
GET
/
merchants
/
category
/
{category_code}
Get Merchants by Category
curl --request GET \
  --url https://sandbox-api.prava.space/v1/merchants/category/{category_code} \
  --header 'Api-Key: <api-key>'
{
  "data": {
    "count": 1,
    "merchants": [
      {
        "merchant_id": "m1e2r3c4-h5a6-n7t8-9012-3456789abcde",
        "name": "Example Merchant",
        "category_code": "electronics",
        "description": "Your one-stop shop for electronics.",
        "logo_url": "https://example.com/logo.png"
      }
    ]
  },
  "meta": {
    "request_id": "req_12345",
    "timestamp": "2025-10-15T05:36:43.000Z",
    "pagination": {
      "page": 1,
      "page_size": 20,
      "total_count": 1,
      "has_more": false
    }
  }
}

Authorizations

Api-Key
string
header
required

Path Parameters

category_code
string
required

Query Parameters

page
integer
default:1
page_size
integer
default:20

Response

A list of merchants.

The response is of type any.

I