Momento Business API
  1. Withdrawals (offboarding)
Momento Business API
  • Intro
  • Public endpoints
    • Get onboarding bank accounts
      GET
    • Get USD quotes
      GET
  • Users
    • Get User
      GET
    • Create a new user
      POST
  • Deposits.
    • Fetch Deposit orders (onboarding)
      GET
    • Create deposit order
      POST
  • Withdrawals (offboarding)
    • Fetch withdrawal orders
      GET
    • Create a withdrawal order
      POST
    • Withdrawal banks list
      GET
  • Schemas
    • Schemas
      • Bank
      • User
      • Price
      • DepositOrder
      • WithdrawalOrder
    • Deposit Bank
    • User Schema
  1. Withdrawals (offboarding)

Withdrawal banks list

Developing
GET
/offboarding_banks/
Get a list of available withdrawal (crypto -> fiat) banks where momento can send fiat to.

Request

Query Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://pruebas.elmomento.io/integrations/offboarding_banks/'
Response Response Example
[
    {
        "id": 0,
        "name": "string",
        "internal_ref": "string",
        "swift_code": null,
        "deposit_limit": 0,
        "fast_payment": true,
        "country": "string"
    }
]
Previous
Create a withdrawal order
Next
Bank
Built with