Wallets

All the necessary APIs to manage wallets operations.

Overview

Welcome to the Wallet API Documentation! Our Wallet API is crafted to offer developers effortless access to essential wallet functionalities, including fetching balances, retrieving wallet details, and accessing transaction histories. Whether you're developing financial applications, managing digital currency transactions, or integrating wallet services into your platform, our API provides the necessary tools and data to streamline your wallet solutions.

By leveraging our Wallet API, developers can enhance user experiences, streamline wallet operations, and unlock new possibilities in the digital currency landscape. Whether you're building personal finance apps, optimizing digital wallet workflows, or innovating in the fintech sector, our API offers the flexibility and scalability to meet your wallet needs effectively.

Definitions

Here are some key terms used frequently in this documentation to describe API functionality. Feel free to refer back to this section if any term is unclear.

Balance: The amount of digital currency or funds available in a wallet at a specific point in time.

Wallet: A digital storage facility that securely holds digital currency, enabling users to send, receive, and store various types of cryptocurrencies or virtual assets.

Fetch balances

Use this API to fetch balances

curl --location 'https://business-api-testnet.palremit.com/core/wallets/balances' \
--header 'Authorization: Bearer xxxxx'

Fetch wallets

Use this API to fetch wallets.

curl --location 'https://business-api-testnet.palremit.com/core/wallets' \
--header 'Authorization: Bearer xxxxx'

Fetch all transactions

Use this API to fetch all transactions.

curl --location --request GET 'https://business-api-testnet.palremit.com/core/transactions?currency=USD' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer xxxxx' \
--data '{
    "accountNumber": "1233504141",
    "bankCode": "058",
    "type": "nuban"
}'
Body
accountNumber : String *required
bankCode : String *required
type : String *required

Last updated