Skip to main content
GET
/
api
/
commerce
/
info
Get commerce service information
curl --request GET \
  --url https://api-beta.pepay.io/api/commerce/info \
  --header 'x-commerce-api-key: <api-key>'
{
  "success": true,
  "data": {
    "version": "1.0.0",
    "supportedRetailers": [
      "amazon",
      "walmart"
    ],
    "features": {
      "productSearch": true,
      "shoppingCart": true,
      "guestCheckout": false,
      "orderTracking": false
    },
    "limits": {
      "maxCartItems": 50,
      "maxOrderValue": 200
    },
    "fees": {
      "fixed": 2.99,
      "percentage": 0.03
    }
  }
}

Authorizations

x-commerce-api-key
string
header
required

Legacy alias for commerce-scoped API keys. Prefer x-api-key with scope=commerce.

Response

Commerce service information

success
boolean
Example:

true

data
object