Skip to main content
GET
/
api
/
wallet
/
accounts
Returns list of wallet accounts of partner
curl --request GET \
  --url https://my.exnessaffiliates.com/api/wallet/accounts/
{
  "accounts": [
    {
      "id": "string",
      "name": "string",
      "currency": "string",
      "balance": "number",
      "type": "string",
      "reserved_rebates_amount": "number"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://exness-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Response

OK

accounts
object[]
required

List of accounts

Example:
[
  {
    "id": "string",
    "name": "string",
    "currency": "string",
    "balance": "number",
    "type": "string",
    "reserved_rebates_amount": "number"
  }
]