Skip to content

Suggested

API Dashboard
GET /payments/available-products

Returns all payment products available for a given identity, organized by currency. Each currency entry includes available pay-in methods with their products and pay-out (withdrawal) methods with their products. Use this endpoint to discover what payment rails are enabled for an account before building a payment flow.

GET/payments/available-products
Get available products

Bearer access token returned by the authentication endpoint.

The API key used for authentication when making requests to the API Gateway.

API version selector for Conomy endpoints. Use 24-04-2025 for the current version.

Identifies the application making the request.

Identity ID to retrieve available products for.

Comma-separated list of currency codes to filter results (e.g., ARS,CLP).

supportedPaymentCurrenciesstring[]required

Currencies for which pay-in products are available.

supportedPayoutCurrenciesstring[]required

Currencies for which pay-out products are available.

supportedPaymentMethodsstring[]required

All pay-in node types available across all currencies.

supportedWithdrawalMethodsstring[]required

All pay-out node types available across all currencies.

byCurrencyobject[]required

Per-currency breakdown of available pay-in and pay-out products.

Request
GET /sandbox/payments/available-products HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
x-api-key: {YOUR_API_KEY}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0
Response
{
  "supportedPaymentCurrencies": [
    "string"
  ],
  "supportedPayoutCurrencies": [
    "string"
  ],
  "supportedPaymentMethods": [
    "CARD"
  ],
  "supportedWithdrawalMethods": [
    "CARD"
  ],
  "byCurrency": [
    {}
  ]
}