v1

latestOpenAPI 3.0.32026-07-26184851.6 MB
Virtual Accounts V2

Discover Options

Returns the virtual account options available for the selected currency and provider context.

get/v2/wallets/{id}/virtual-accounts/discovery

Path parameters

idstring uuid required

Wallet identifier.

Query parameters

providerstring

Optional provider slug. Omit it to let Blockradar select an eligible provider.

Response

Successful response.

statusCodeinteger required
messagestring required

Human-readable result.

Example response

{
  "statusCode": 200,
  "message": "Virtual account options fetched successfully",
  "data": {
    "assets": [
      {
        "asset": {
          "symbol": "USDC",
          "name": "USD Coin",
          "logoUrl": "https://cdn.example.com/assets/usdc.svg",
          "blockchain": {
            "name": "Ethereum",
            "symbol": "ETH",
            "slug": "ethereum",
            "tokenStandard": "ERC20",
            "logoUrl": "https://cdn.example.com/blockchains/ethereum.svg"
          }
        },
        "currencies": [
          "NGN"
        ]
      }
    ]
  }
}