Partner API
  1. Partner Operations
Partner API
  • Getting Started
    • Introduction
    • Authentication
    • Business Use Cases
  • API References
    • Partner Operations
      • Get Balances
        GET
      • Create Wallet
        POST
      • Get Transaction History
        GET
      • Retrieve Exchange Rate and Create a Lock
        GET
      • Create and Finalize an Exchange
        POST
      • Retrieve Detailed Exchange Infromation
        GET
      • Create Crypto Withdrawal
        POST
      • Get Crypto Withdrawal Details
        GET
      • Create a SEPA Transfer
        POST
      • Get SEPA Transfer Details
        GET
    • User Accounts
      • Create User Account
      • Add KYC File
      • Add POA File
      • Add User Verification
      • Extend user
      • Update Existing User
      • Delete User
      • Suspend User
      • Unsuspend User
      • Get User Balances
      • Get User Transaction History
    • KYC by P100
      • Creating KYC Verification
      • Redirect to Verification
      • Get KYC Status
    • Currency Exchange
      • Retrieve Exchange Rate
      • Retrieve Exchange Rate and Create a Lock
      • Create and Finalize an Exchange
      • Retrieve Detailed Exchange Infromation
    • Crypto Deposits
      • Update Travel Rule
    • Crypto Withdrawals
      • Get Network Fee
      • Create Crypto Withdrawal
      • Get Crypto Withdrawal Details
    • 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
    • Custom Fiat Operations
      • SEPA Deposit & Withdrawal
    • Orders
      • Get Rates
      • Retrieve Order Rate and Create a Lock
      • Create and Finalize an Order
      • Get Order Details
    • Payment link
      • Generate Payment Link
      • Get Payment Link Details
  • Integration
    • SDKs & Integration Guides
    • Transaction Processing
    • Error Handling
    • Rate Limiting
    • Webhooks
      • User & KYC Webhooks
        • User Balance Generation
        • KYC File Added
        • POA Verification Status
        • KYC Verification Status
        • Create wallet
      • Transfers & Payments Webhooks
        • P2P Transfer Webhook
        • SEPA Transfer
        • SEPA Deposit
        • Crypto Withdrawal
        • Crypto Deposit
        • Exchange
        • Card Transaction
        • Order status
        • Payment Link
      • Card Webhooks
        • Card 3DS Code
        • Card Activation Code
  • Reference
    • Supported Countries
    • Supported Currencies
    • Fees
    • FAQ
    • Changelog
    • Support
  1. Partner Operations

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.
The endpoint returns detailed information about all fiat and crypto balances assigned to the partner, including:
Current available amount for each currency
Currency name and type (fiat or crypto)
IBAN (for fiat, if available)
Wallet address (for crypto)
Exchange rate to EUR
Status of each balance (e.g., ACTIVE, WAITING_TO_BE_ACTIVATED, ACTIVE_EXTENDED)

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
Partner Operations
Next
Create Wallet
Built with