Skip to main content
GET
/
accounts
/
{id}
cURL
curl --request GET \
  --url https://api.spotflow.co/api/v1/accounts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "c1fba25a-a36b-479c-b17d-64dbaf3ba32c",
  "balanceId": "bln_52448a75-248e-4277-932f-5af5c325d372",
  "accountName": "Main GHS Account",
  "accountNumber": "7706438396",
  "parentAccountId": "c1fba25a-a36b-479c-b17d-64dbaf3ba32c",
  "currency": "GHS",
  "mode": "live",
  "accountTag": "main-account",
  "status": "active",
  "createdAt": "2025-07-22T11:25:28.792959Z",
  "updatedAt": "2025-08-07T11:56:49.337647Z",
  "accountDetails": {
    "accountName": "SPOTFLOW/Quantum Technologies",
    "accountNumber": "7806438396",
    "bankName": "Testbank MFB"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Response

A JSON array of account details objects.

id
string<uuid>
required
Example:

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

balanceId
string
required
Example:

"bln_52448a75-248e-4277-932f-5af5c325d372"

accountName
string
required
Example:

"Main GHS Account"

accountNumber
string
required
Example:

"7706438396"

parentAccountId
string<uuid>
required
Example:

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

currency
string
required
Example:

"GHS"

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

"live"

status
string
required
Example:

"active"

createdAt
string<date-time>
required
Example:

"2025-07-22T11:25:28.792959Z"

accountTag
string
Example:

"main-account"

updatedAt
string<date-time>
Example:

"2025-08-07T11:56:49.337647Z"

accountDetails
object