For the complete documentation index, see llms.txt. This page is also available as Markdown.

Card Products rate by merchant

List of products (cards) and their corresponding rates for the specified merchant.

Endpoint: GET /products/search-by-merchant?merchant=<merchant>

Query Parameters

Parameter
Type
Required
Description
Example

merchant

string

Yes

Merchant name

github, google

Response :

[
  {
    "productCode": "S00E0000000",
    "rate": 0.68
  },
  {
    "productCode": "S00SV000003",
    "rate": 0.59
  }
]

Response Parameters:

Field
Type
Description

productCode

String

Unique product (card) code

rate

Decimal

Rate / price for this product

Last updated