Skip to main content
GET
/
v3
/
metadata
/
collection_accounts
/
wallets
Get Wallet Metadata
curl --request GET \
  --url https://service-sandbox.tazapay.com/v3/metadata/collection_accounts/wallets \
  --header 'Authorization: Basic <encoded-value>'
{
  "capabilities": [
    {
      "payment_method_type": "stablecoin_usdt",
      "type": [
        "Ethereum",
        "Tron"
      ],
      "limit": {
        "minimum": {
          "amount": 10,
          "ccy": "USD"
        },
        "maximum": {
          "amount": 500000,
          "ccy": "USD"
        },
        "currency": "USD"
      },
      "on_behalf_of": {
        "support": true,
        "restricted_industry_verticals": [
          "gambling",
          "firearms"
        ],
        "additional_requirements": [
          "entity_approval_required"
        ],
        "restricted_remitter_countries": [
          "KP"
        ],
        "restricted_account_holder_countries": [
          "RU",
          "IR"
        ]
      },
      "setup_time": "instant"
    },
    {
      "payment_method_type": "stablecoin_usdc",
      "type": [
        "Ethereum",
        "Solana",
        "Algorand",
        "Arbitrum",
        "Avalanche",
        "Base",
        "Flow",
        "Hedera",
        "Near",
        "Noble",
        "Polkadot",
        "Polygon Pos",
        "Stellar",
        "Binance",
        "Op Mainnet"
      ],
      "limit": {
        "minimum": {
          "amount": 10,
          "ccy": "USD"
        },
        "maximum": {
          "amount": 500000,
          "ccy": "USD"
        },
        "currency": "USD"
      },
      "on_behalf_of": {
        "support": true,
        "restricted_industry_verticals": [
          "crypto",
          "adult_content"
        ],
        "additional_requirements": [
          "entity_submission_required"
        ],
        "restricted_remitter_countries": [
          "US",
          "CN"
        ],
        "restricted_account_holder_countries": [
          "RU",
          "BY",
          "KP"
        ]
      },
      "setup_time": "instant"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

country
string

Country in which the account is to be opened (ISO 3166 alpha-2).

currencies
string[]

Currencies in ISO format.

entity
string

Entity identifier. Set entity id to get wallet capabilities available for this particular entity. Capabilities not available for this entity wil be filtered out.

on_behalf_of
boolean

Set to true to get metadata for an on_behalf_of merchant. Set to false for a direct merchant.

Response

200 - application/json

Wallet metadata for the given filters.

capabilities
object[]

List of wallet capabilities available for the given filters.