Partner API
  1. Balances & Transaction History
Partner API
  • Getting Started
    • Introduction
    • Authentication
    • Business Use Cases
  • API References
    • Partner Operations
      • Balances & Transaction History
        • Get Balances
          GET
        • Get Transaction History
          GET
        • Create Wallet
          POST
      • Currency Exchange
        • Retrieve Exchange Rate
        • Retrieve Exchange Rate and Create a Lock
        • Create and Finalize an Exchange
        • Retrieve Detailed Exchange Information
      • SEPA Transfers
        • Get SEPA Deposit Info
        • Get SEPA Deposit Contact List
        • Create a SEPA Transfer
        • Get SEPA Transfer Details
      • Crypto Withdrawal
        • Get Network Fee
        • Create Crypto Withdrawal
        • Get Crypto Withdrawal Details
      • Crypto Deposits
        • Update Travel Rule
      • Orders
        • Get Rates
        • Retrieve Order Rate and Create a Lock
        • Create and Finalize an Order
        • Get Order Details
      • Payment link & Checkout Link
        • Generate Payment Link
        • Generate Hosted Checkout
        • Get Payment Link Details
    • User Operations
      • Onboarding & KYC Flow
        • Create User Account
        • Method A: Add KYC File
        • Method B: Creating KYC Verification
        • Method B: Redirect to Verification
        • Method B: Get KYC Status
        • Add User Verification
        • Add POA File
      • Account Management
        • Update Existing User
        • Delete User
        • Suspend User
        • Unsuspend User
      • Balances & Transaction History
        • Get User Balances
        • Get User Transaction History
      • Currency Exchange
        • Retrieve Exchange Rate
        • Retrieve Exchange Rate and Create a Lock
        • Create and Finalize an Exchange
        • Retrieve Detailed Exchange Information
      • SEPA Transfers
        • Get SEPA Deposit Info
        • GET SEPA Deposit Contact List
        • Create a SEPA Transfer
        • Get SEPA Transfer Details
      • Crypto Withdrawal
        • Get Network Fee
        • Create Crypto Withdrawal
        • Get Crypto Withdrawal Details
      • Crypto Deposits
        • Update Travel Rule
      • Internal Transfers
        • Create a Transfer
        • Get Transfer Details
      • Virtual Cards
        • Create Virtual Card
        • Get All User Cards
        • Get Card Details
        • Update Card PIN
        • Block Card
        • Unblock Card
        • Get Card Limits
        • Update Card Limits
        • Delete Card
  • Integration
    • SDKs & Integration Guides
    • Transaction Processing
    • Error Handling
    • Rate Limiting
    • Webhooks
      • User & KYC Webhooks
        • User Balance Generation Webhook
        • KYC File Added Webhook
        • POA Verification Status Webhook
        • KYC Verification Status Webhook
        • Create Wallet Webhook
      • Transfers & Payments Webhooks
        • P2P Transfer Webhook
        • Partner SEPA Transfer Webhook
        • User SEPA Transfer Webhook
        • SEPA Deposit Webhook
        • Crypto Withdrawal Webhook
        • Crypto Deposit Webhook
        • Exchange Webhook
        • Card Transaction Webhook
        • Order status Webhook
        • Payment Link Webhook
      • Card Webhooks
        • Card 3DS Code Webhook
        • Card Activation Code Webhook
  • Reference
    • Supported Countries
    • Supported Currencies
    • Fees
    • FAQ
    • Changelog
    • Support
  1. Balances & Transaction History

Get Balances

Testing Env
https://partner-api-stage.p100.io
Testing Env
https://partner-api-stage.p100.io
GET
/v1/partner/balances
Retrieves the current balances for all cryptocurrencies and fiat currencies for the partner account. This endpoint provides a comprehensive overview of the partner's financial assets within the system.
Response Details:
The endpoint returns detailed information about all fiat and crypto balances assigned to the partner, including:
Amount: Current available funds for each currency.
Currency Info: Name and type (FIAT or CRYPTO).
Deposit Details: IBAN (for fiat) or Wallet Address (for crypto) used for top-ups.
Valuation: Current exchange rate to EUR.
Status: The state of the balance (typically ACTIVE).
NOTE
If the partner account has no active balances initialized, this endpoint will return an error.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or

Responses

🟢200Success
application/json
Body

🟠401Access Denied
🟠400P500: Unknown exception
🟠400P501: Service temporarily unavailable
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://partner-api-stage.p100.io/v1/partner/balances' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "fiatBalances": [
        {
            "id": "21be6d18-5d25-4ec4-b7fa-fe6923766caa",
            "amount": "97.96",
            "name": "eur",
            "rate": 1,
            "iban": "LT593130019950000924",
            "status": "ACTIVE_EXTENDED"
        }
    ],
    "cryptoBalances": [
        {
            "id": "c2c1db21-2a9c-46ea-aed2-90c89d502854",
            "amount": "21.79134726",
            "name": "pol",
            "wallet": "0x02e3eb567058d5f58269a3bff3b9256c1adcc582",
            "rate": 0.20626987,
            "networkConfig": {
                "polygon": {
                    "mainnet": false,
                    "name": "amoy",
                    "withdrawal": {
                        "feeWithdrawal": 0.001,
                        "minWithdrawal": 0.00005
                    },
                    "deposit": {
                        "minDeposit": 0
                    }
                }
            }
        },
        {
            "id": "979ccd94-2e33-4789-bc53-c8b952373223",
            "amount": "0.00450304",
            "name": "btc",
            "wallet": "tb1q25yl0k87v687tcdxqsarkd9y7pxu9nffcqltt9",
            "rate": 101464.26399862,
            "networkConfig": {
                "btc": {
                    "mainnet": false,
                    "name": "test",
                    "withdrawal": {
                        "feeWithdrawal": 0.0003,
                        "minWithdrawal": 0.000001
                    },
                    "deposit": {
                        "minDeposit": 0
                    }
                }
            }
        },
        {
            "id": "4f8a5d10-be8a-4af7-9db8-132da2b303dc",
            "amount": "154.493140",
            "name": "usdc",
            "wallet": "0x02e3eb567058d5f58269a3bff3b9256c1adcc582",
            "rate": 0.850897,
            "networkConfig": {
                "ethereum": {
                    "mainnet": false,
                    "name": "sepolia",
                    "withdrawal": {
                        "feeWithdrawal": 10,
                        "minWithdrawal": 1
                    },
                    "deposit": {
                        "minDeposit": 5
                    }
                },
                "polygon": {
                    "mainnet": false,
                    "name": "amoy",
                    "withdrawal": {
                        "feeWithdrawal": 0.5,
                        "minWithdrawal": 2
                    },
                    "deposit": {
                        "minDeposit": 0
                    }
                }
            }
        },
        {
            "id": "cfe6fead-4b5e-4eb6-abc8-40d49b01f15b",
            "amount": "926.98594472",
            "name": "doge",
            "wallet": "nYEiEBjhKj4uHuFw2LmscYj8NvdMAgwzDQ",
            "rate": 0.2180131,
            "networkConfig": {
                "doge": {
                    "mainnet": false,
                    "name": "test",
                    "withdrawal": {
                        "feeWithdrawal": 5,
                        "minWithdrawal": 0.01
                    },
                    "deposit": {
                        "minDeposit": 0
                    }
                }
            }
        },
        {
            "id": "efec8820-30f5-4836-8c92-259ac3636f44",
            "amount": "0.00277231",
            "name": "eth",
            "wallet": "0x02e3eb567058d5f58269a3bff3b9256c1adcc582",
            "rate": 3739.63838808,
            "networkConfig": {
                "ethereum": {
                    "mainnet": false,
                    "name": "sepolia",
                    "withdrawal": {
                        "feeWithdrawal": 0.003,
                        "minWithdrawal": 0.0006
                    },
                    "deposit": {
                        "minDeposit": 0
                    }
                }
            }
        },
        {
            "id": "6051562a-82fc-43b9-826e-d8d0b2fa1d06",
            "amount": "2.02225352",
            "name": "ltc",
            "wallet": "tltc1q5dkmyp20u0gsahasefgzxtsl5w8jv9mnwh38wp",
            "rate": 102.49595319,
            "networkConfig": {
                "ltc": {
                    "mainnet": false,
                    "name": "test",
                    "withdrawal": {
                        "feeWithdrawal": 0.002,
                        "minWithdrawal": 0.001
                    },
                    "deposit": {
                        "minDeposit": 0
                    }
                }
            }
        }
    ]
}
Previous
Balances & Transaction History
Next
Get Transaction History
Built with