Skip to main content
GET
/
v1
/
finance
/
accounts
Get all accounts
curl --request GET \
  --url https://api.nomi.tools/v1/finance/accounts \
  --header 'Accept: <accept>' \
  --header 'Authorization: Basic <encoded-value>'
{
  "accounts": [
    {
      "id": "<string>",
      "name": "<string>",
      "balance": 123,
      "currency": "<string>"
    }
  ],
  "meta": {
    "total": 100,
    "size": 10,
    "pages": 1,
    "page": 1
  }
}

Authorizations

Authorization
string
header
required

Use HTTP Basic Authentication. Provide your email as login and PPT token as the password.

Headers

Accept
enum<string>
default:application/json
required
Available options:
application/json

Query Parameters

with
enum<string>
Available options:
totals

Response

200 - application/json

List of accounts

accounts
object[]
meta
object