WSPN
Language
  • English
Version
  • V1.0
Wallet
Language
  • English
Version
  • V1.0
Wallet
Twitter
Telegram
Linkedin
  1. Remit Info
  • Introduction
  • Get Started
  • Signature
  • About WUSD
  • Webhook Service
  • Sandbox Environment
  • Blockchain Confirmations
  • Appendix
  • API Keys
  • Core Functionality
    • Quickstart: Deposit via Blockchain Wallet
    • Quickstart: Withdraw via Blockchain Wallet
    • Quickstart: Deposit via Funds Transfer
    • Quickstart: Withdraw to Bank
  • Api Reference
    • Authentication
      • Get Access Token
      • Refresh Access Token
    • Wallet
      • Address
        • Get Deposit Address
        • Add Whitelist Address
        • Get Whitelist Address
        • Delete Whitelist Address
      • Remit Info
        • Get Deposit Remit Info
          GET
        • Add Remit Info
          POST
        • Edit Remit Info
          POST
        • Get Remit Info
          POST
        • Delete Remit Info
          POST
      • Transaction
        • Get Balance
        • Create Fiat Deposit
        • Create Fiat Withdraw
        • Create Crypto Withdraw
        • Get Fiat Transaction
        • Get Exchange Rate
        • Create Mint/Redeem
        • Mint/Redeem History
        • Get Mint Redeem Receipt
        • Get Mint Redeem Order
        • Get Fiat Transaction Receipt
        • Get Fiat Transaction Order
        • Get Crypto Transaction Receipt
        • Get Crypto Transaction Order
      • User Account
        • Country List
        • Create
        • Batch Create
        • Sub Account
        • Sub Account/Api Key
        • Kyb Submit File
        • Kyb Batch Submit File
        • Kyb Submit Text
      • File Upload
        • File Upload
  1. Remit Info

Get Remit Info

Developing
Sandbox
https://wallet.test.wspn.io
Sandbox
https://wallet.test.wspn.io
POST
/openapi/v1/remit-info/search
API to retrieve the bank account list for withdrawals, with an option to filter
by currency.

Request

Body Params text/plain
Example
FieldTypeRequiredMax LengthDescription
queryObjectY
currencyStringNNot required, will retrieve all
Example:{ "query": { "currency": "USD" } }

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://wallet.test.wspn.io/openapi/v1/remit-info/search' \
--header 'Content-Type: text/plain' \
--data-raw '{
"query": {
    "currency": "USD"
  }
}'

Responses

🟢200成功
application/json
Body

Example
{
    "header": {
        "success": true
    },
    "resultList": [
        {
            "id": 1217,
            "currency": "USD",
            "bankType": "SWIFT",
            "beneficiaryName": "John Doe",
            "beneficiaryAccount": "123456789",
            "beneficiaryAddress": "123 Main St",
            "beneficiaryBankName": "Bank of America",
            "beneficiaryBankAddress": "123 Main St",
            "beneficiaryBankCountry": "US",
            "beneficiaryBankSwiftCode": "BFA",
            "beneficiaryBankCity": "New York",
            "isIntermediaryRequired": true,
            "intermediaryBankName": "Bank of America",
            "intermediaryBankAddress": "123 Main St",
            "intermediaryBankAccount": "123456789",
            "intermediaryBankSwiftCode": "BFA",
            "intermediaryBankCity": "New York",
            "intermediaryBankCountry": "US",
            "createdTime": "2025-01-03 12:07:17",
            "lastUpdatedTime": "2025-01-03 12:10:18"
        },
        {
            "id": 1216,
            "currency": "USD",
            "bankType": "SWIFT",
            "beneficiaryName": "John Doe",
            "beneficiaryAccount": "123456789",
            "beneficiaryAddress": "123 Main St",
            "beneficiaryBankName": "Bank of America",
            "beneficiaryBankAddress": "123 Main St",
            "beneficiaryBankCountry": "US",
            "beneficiaryBankSwiftCode": "BFA",
            "beneficiaryBankCity": "New York",
            "isIntermediaryRequired": true,
            "intermediaryBankName": "Bank of America",
            "intermediaryBankAddress": "123 Main St",
            "intermediaryBankAccount": "123456789",
            "intermediaryBankSwiftCode": "BFA",
            "intermediaryBankCity": "New York",
            "intermediaryBankCountry": "US",
            "createdTime": "2025-01-03 12:05:56",
            "lastUpdatedTime": "2025-01-03 12:05:56"
        }
    ]
}
Modified at 2025-01-03 04:11:00
Previous
Edit Remit Info
Next
Delete Remit Info
Built with