Kontostand abrufen

Balance abrufen

Die Methode zum Abrufen des Kontostands liefert den aktuellen Kontostand zurück.

Anfrage

URL

https://api.belurk.com/accounts/get-balance

Sendemethode

GET

CURL

  1. 1.curl --location 'https://api.belurk.com/accounts/get-balance'
  2. 2.--header 'x-api-token: {{API_TOKEN}}'

Erfolgreiche Antwort

Antwortstatus: HTTP 200 OK

  1. 1.{
  2. 2. "data": {
  3. 3. "balance": "0"
  4. 4. }
  5. 5.}

Fehlerhafte Antwort

Antwortstatus: HTTP 401 Nicht autorisiert

  1. 1.{
  2. 2. "data": null
  3. 3. "error": "Unauthorized"
  4. 4.}