Kobble
  1. Wallets
Kobble
  • Introduction
  • API Fundamentals
    • Idempotency
    • Rate Limits
  • Authorization
    • Authorization
    • Get access token
      POST
  • Beneficiaries
    • List all beneficiaries
      GET
    • Get beneficiary by ID
      GET
    • Create beneficiary
      POST
    • Update beneficiary
      PUT
  • Cards
    • Cards API
    • Get all cards
      GET
    • Create a new card
      POST
    • Get card by ID
      GET
    • Update card status
      PATCH
    • Replace or renew card
      POST
    • Generate card secret
      POST
  • Card Programs
    • Card Programs API
    • Get all programs
      GET
    • Create a new program
      POST
    • Get program by ID
      GET
  • Clients
    • Clients API
    • Get all clients
    • Get client by ID
    • Create a new client
    • Update client status
  • Endusers
    • Endusers API
    • Get all endusers
    • Create a new enduser
    • Get enduser by ID
  • Transactions
    • Transactions API
    • Get all transactions
    • Create a transaction
    • Get transaction by ID
    • Create manual credit transaction
    • Create manual debit transaction
  • Wallets
    • Wallets API
    • Get all wallets
      GET
    • Create a new wallet
      POST
    • Get wallet by ID
      GET
    • Update wallet
      PATCH
  • Relays
    • Relays API
    • Create subscription
  • Webhooks
    • Webhooks API
    • Webhook Signature Verification
    • Get all webhooks
    • Create a webhook
    • Delete a webhook
  1. Wallets

Get wallet by ID

GET
/customers/v1/wallets/{id}
Retrieve the details of a wallet by its unique ID.

Request

Path Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/customers/v1/wallets/' \
--header 'Authorization: Bearer {{access_token}}'

Responses

🟢200OK
application/json
Body

Example
{
    "id": "c907159f-96bb-4bf3-9cfd-f3944a33304f",
    "external_id": "11111",
    "created_at": "2025-01-14T16:57:15.372Z",
    "updated_at": "2025-01-14T16:57:15.374Z",
    "holder_id": "e4edb795-1626-4543-aefe-5f5c587044ed",
    "asset": "AUD",
    "asset_class": "CURRENCY",
    "status": "INACTIVE",
    "partner_product": "KOBBLE_AUD_1",
    "total_amount": 1,
    "amount": 1,
    "reserved_amount": 0
}
Modified at 2025-01-14 15:25:01
Previous
Create a new wallet
Next
Update wallet
Built with