Skip to main content
GET
/
api
/
v1
/
banks
List Bank Codes
curl --request GET \
  --url https://skala-sandbox.ripio.com/api/v1/banks/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "code": "1001",
    "name": "Banco de Bogotá",
    "type": [
      "cc",
      "ch"
    ],
    "logo": "https://example.com/logos/banco-bogota.png"
  },
  {
    "code": "1002",
    "name": "Banco Popular",
    "type": [
      "cc"
    ],
    "logo": "https://example.com/logos/banco-popular.png"
  },
  {
    "code": "1003",
    "name": "Bancolombia",
    "type": [
      "cc",
      "ch",
      "dp"
    ],
    "logo": "https://example.com/logos/bancolombia.png"
  }
]

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Response

A list of available bank codes.

code
string
required

The unique bank code used as the beneficiary_institution value when creating fiat accounts.

name
string
required

The display name of the bank.

type
string[]
required

The allowed counterparty_types for this bank (e.g., cc, ch, dp).

URL of the bank's logo.