ReferenceTeam Management

Get

Retrieve information for the authenticated team: name, KYB status, total converted wallet balance, balances, bank deposit instructions per currency, and the team's members with their roles (owners first). The per-balance 'depositInfo' field is deprecated in favor of the top-level 'deposits' array and will be removed on 2026-09-23.

GET/team

Retrieve information for the authenticated team: name, KYB status, total converted wallet balance, balances, bank deposit instructions per currency, and the team's members with their roles (owners first). The per-balance 'depositInfo' field is deprecated in favor of the top-level 'deposits' array and will be removed on 2026-09-23.

Authorization

AuthorizationBearer <token>

Team API key generated from team settings. Sent as Authorization: Bearer <api_key>.

In: header

Response Body

application/json

curl -X GET "https://example.com/team"
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "teamUuid": "string",  "name": "string",  "kybStatus": "pending",  "dac7ReportingRequired": true,  "totalBalance": "string",  "totalBalanceCurrency": "USD",  "balances": [    {      "type": "wallet",      "currency": "USD",      "tokenSymbol": "string",      "isActivePayout": true,      "tokenAddress": "string",      "walletAddress": "string",      "balance": "string",      "allowance": {        "limit": "string",        "used": "string",        "remaining": "string",        "nextResetAt": "2019-08-24T14:15:22Z"      },      "depositInfo": {        "type": "iban",        "iban": "string",        "beneficiary": "string",        "bic": "string",        "sortCode": "string",        "accountNumber": "string",        "swift": {          "iban": "string",          "bic": "string",          "beneficiary": "string",          "bankName": "string",          "bankAddress": "string",          "reference": "string"        }      },      "openPayoutAmount": "string",      "balanceAfterPendingPayouts": "string",      "scheduledPayoutAmount": "string"    }  ],  "deposits": [    {      "currency": "USD",      "rails": [        {          "type": "sepa",          "iban": "string",          "bic": "string",          "ownership": "dedicated",          "beneficiary": "string",          "bankName": "string",          "bankAddress": "string",          "reference": "string"        }      ]    }  ],  "members": [    {      "email": "string",      "name": "string",      "role": "owner",      "joinedAt": "2019-08-24T14:15:22Z"    }  ]}