Skip to main content
GET
/
virtual-accounts
cURL
curl --request GET \
  --url https://api.spotflow.co/api/v1/virtual-accounts \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "c1fba25a-a36b-479c-b17d-64dbaf3ba32c",
    "accountNumber": "7706438396",
    "accountName": "Quantum Technologies",
    "bankName": "Testbank MFB",
    "mode": "live",
    "lifeCycle": "temporary"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

accountNumber
string
required

This filters by the account number created for the virtual accounts.

Response

A JSON array of dynamic details objects.

id
string<uuid>
Example:

"c1fba25a-a36b-479c-b17d-64dbaf3ba32c"

accountNumber
string
Example:

"7706438396"

accountName
string
Example:

"Quantum Technologies"

bankName
string
Example:

"Testbank MFB"

mode
enum<string>
Available options:
live,
test
Example:

"live"

lifeCycle
string
Example:

"temporary"