GET
/
v1
/
bank-accounts
Get bank accounts
curl --request GET \
  --url https://api.hyperline.co/v1/bank-accounts \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "total": 1,
    "taken": 1,
    "skipped": 0
  },
  "data": [
    {
      "format": "iban_bic_swift",
      "iban": "FR76XXXXXXXXXXXXXXXXXXXXXXX",
      "bic_swift": "XXXXXXXX"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

take
number | null
default:50
Required range: 0 <= x <= 100
skip
number | null
default:0
Required range: x >= 0

Response

200 - application/json

The response is of type object.