List available products

GET /products

Retrieve all available banking products (currencies) before creating accounts

Responses

  • 200 application/json

    List of products

    Hide response attributes Show response attributes object
    • createdAt string

      Creation timestamp

    • description string

      Product description

    • edges object
      Hide edges attribute Show edges attribute object
      • currency object Required

        Currency information including symbol, code, and decimal places

        Hide currency attributes Show currency attributes object
        • code string Required

          ISO currency code (e.g., USD, EUR)

        • createdAt string

          Creation timestamp

        • decimals integer

          Number of decimal places

        • id integer Required

          Currency ID

        • name string Required

          Currency full name

        • swiftMinimumWithdrawalAmount string

          Minimum SWIFT withdrawal amount

        • symbol string

          Currency symbol (e.g., $, €)

        • updatedAt string

          Last update timestamp

    • id integer Required

      Product ID

    • name string Required

      Product name

    • updatedAt string

      Last update timestamp

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • errorCode string Required

      Error code

    • message string Required

      Error message

GET /products
curl \
 --request GET 'https://bank.bank.place/products' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 12,
    "name": "Full Reserve Account USD",
    "edges": {
      "currency": {
        "id": 11,
        "code": "USD",
        "name": "United States Dollar",
        "symbol": "$",
        "decimals": 2,
        "swiftMinimumWithdrawalAmount": "5000"
      }
    },
    "description": "Full Reserve Account USD"
  }
]
Response examples (401)
{
  "message": "Invalid request parameters",
  "errorCode": "invalid_request"
}