getneo
  1. Wallets
getneo
  • Introduction
  • API examples
  • Technical topics
    • API structure
    • HTTP headers
    • Decoupled responses
    • Validation failures (418)
  • Endpoints
    • Auth
      • Get service bearer token (password)
        GET
      • Change tenant
        GET
      • Close session
        GET
    • Counterparties
      • Get all counterparties
        GET
      • Get counterparty by ID
        GET
      • Get draft counterparty by ID
        GET
      • Submit counterparty draft
        POST
      • Update counterparty draft
        POST
      • Delete a counterparty draft
        DELETE
      • Add account to counterparty
        POST
      • Update counterparty account
        PATCH
      • Export counterparty data
        POST
    • Payments
      • Get all payments
        GET
      • Get a payment by ID
        GET
      • Make a payment (deposit, withdrawal or internal)
        POST
    • Wallets
      • Get all wallets
        GET
      • Get a wallet by ID
        GET
  1. Wallets

Get all wallets

Demo
https://client.demo.getneo.com
Demo
https://client.demo.getneo.com
GET
/api/v2/wallets
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://client.demo.getneo.com/api/v2/wallets?ledger'
Response Response Example
[
    {
        "id": "abcdefghijkl0123456789",
        "actions": [
            "save"
        ],
        "accountNumber": "1234567890",
        "creationDate": "2019-08-24T14:15:22Z",
        "currencyCode": "EUR",
        "name": "string",
        "description": "string",
        "state": "accountVerified",
        "type": "internal",
        "isCurrencyActive": true,
        "isCurrencyAndWalletActive": true,
        "default": true,
        "hasOperations": true,
        "ledgerOperations": [
            {
                "id": "abcdefghijkl0123456789",
                "uuid": "string",
                "operationType": "deposit",
                "debitCredit": "C",
                "reference": "string",
                "amount": {
                    "amount": 0,
                    "currency": "EUR",
                    "minorUnit": 2
                },
                "creationDate": "2019-08-24T14:15:22Z",
                "valueDate": "2019-08-24T14:15:22Z",
                "status": "awaiting",
                "transferType": "neoTransfer",
                "corp": {
                    "id": "abcdefghijkl0123456789",
                    "displayName": "string",
                    "name": "My Corp",
                    "alias": "string"
                },
                "beneficiary": {},
                "sender": {},
                "impactedWallet": {
                    "id": "abcdefghijkl0123456789",
                    "accountNumber": "string",
                    "currency": "EUR",
                    "name": "string",
                    "type": "unspecified",
                    "walletState": "accountVerified"
                },
                "impactsAvailableBalance": true,
                "intermediary": {
                    "id": "abcdefghijkl0123456789",
                    "iban": "string",
                    "alias": "string",
                    "bankName": "string",
                    "bic": "string",
                    "corpName": "string",
                    "country": "string",
                    "currencies": [
                        "EUR"
                    ],
                    "ibanType": "string"
                },
                "orderId": "string",
                "orderVanityId": "string",
                "orderType": "nonFx",
                "orderInfo": {},
                "walletBalance": {
                    "amountActual": {
                        "amount": 0,
                        "currency": "EUR",
                        "minorUnit": 2
                    },
                    "amountBase": {
                        "amount": 0,
                        "currency": "EUR",
                        "minorUnit": 2,
                        "rate": 0
                    },
                    "baseFixingRate": 0,
                    "conversionRate": 0
                },
                "runningAvailableBalance": {
                    "amountActual": {
                        "amount": 0,
                        "currency": "EUR",
                        "minorUnit": 2
                    },
                    "amountBase": {
                        "amount": 0,
                        "currency": "EUR",
                        "minorUnit": 2,
                        "rate": 0
                    },
                    "baseFixingRate": 0,
                    "conversionRate": 0
                },
                "runningClientTotalAvailableBalanceBase": {
                    "amount": 0,
                    "currency": "EUR",
                    "minorUnit": 2
                },
                "runningClientTotalBase": {
                    "amount": 0,
                    "currency": "EUR",
                    "minorUnit": 2
                }
            }
        ],
        "balanceDate": "2019-08-24T14:15:22Z",
        "balance": 123456.78,
        "availableBalance": 123456.78,
        "isOutOfDate": true,
        "baseCurrencyCode": "EUR",
        "baseCurrencyBalance": 123456.78
    }
]

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
🟠403Forbidden
Modified at 2025-08-12 15:52:12
Previous
Make a payment (deposit, withdrawal or internal)
Next
Get a wallet by ID
Built with