Get Payment Methods

List available payment methods by country

GET
texttext
/api/v2/payment-methods

Returns available payment methods, optionally filtered by country and/or currency. Each method includes details about processing times, limits, and fees.

Query Parameters

apiKeystringrequired
Your public API key
countryCodestring
Filter by ISO country code (e.g., "US")
fiatCurrencystring
Filter by fiat currency code (e.g., "USD")
productsAvailedstring
Filter by product: BUY, SELL, or NFT

Response Schema

responsearray
Array of payment method objects
response[].idstring
Unique payment method identifier
response[].namestring
Display name of the payment method
response[].categorystring
Category (card, bank_transfer, wallet, local)
response[].minAmountnumber
Minimum amount in fiat
response[].maxAmountnumber
Maximum amount in fiat
response[].processingTimestring
Expected processing time (e.g., "Instant", "1-3 business days")
response[].feePercentnumber
Fee percentage (where applicable)
response[].fixedFeenumber
Fixed fee amount (where applicable)
response[].iconUrlstring
URL to payment method icon/logo

Example Request

bashbash
curl -X GET "https://OZZOBiT.com/api/api/v2/payment-methods?apiKey=YOUR_KEY&countryCode=US&fiatCurrency=USD"

Example Response

jsonjson
{
  "response": [
    {
      "id": "credit_debit_card",
      "name": "Credit/Debit Card",
      "category": "card",
      "minAmount": 10.00,
      "maxAmount": 20000.00,
      "processingTime": "Instant - 10 minutes",
      "feePercent": 3.99,
      "fixedFee": 0.20,
      "iconUrl": "https://OZZOBiT.com/cdn/assets/pm/card.png"
    },
    {
      "id": "apple_pay",
      "name": "Apple Pay",
      "category": "card",
      "minAmount": 10.00,
      "maxAmount": 10000.00,
      "processingTime": "Instant",
      "feePercent": 3.99,
      "fixedFee": 0.20,
      "iconUrl": "https://OZZOBiT.com/cdn/assets/pm/applepay.png"
    },
    {
      "id": "bank_transfer",
      "name": "Bank Transfer (ACH)",
      "category": "bank_transfer",
      "minAmount": 50.00,
      "maxAmount": 20000.00,
      "processingTime": "1-3 business days",
      "feePercent": 0.99,
      "fixedFee": 0,
      "iconUrl": "https://OZZOBiT.com/cdn/assets/pm/bank.png"
    },
    {
      "id": "google_pay",
      "name": "Google Pay",
      "category": "card",
      "minAmount": 10.00,
      "maxAmount": 10000.00,
      "processingTime": "Instant",
      "feePercent": 3.99,
      "fixedFee": 0.20,
      "iconUrl": "https://OZZOBiT.com/cdn/assets/pm/gpay.png"
    }
  ]
}