Download OpenAPI specification:Download
Welcome to the Tranza Public API documentation.
This specification lists the currently published public endpoints for working with Tranza: address generation and management, transaction and withdrawal flows, payment-page integration, AML checks, reporting and platform utilities.
Authentication: include your API key in requests where required (see operation descriptions). The older "PublicKey" field is deprecated — please use "ApiKey".
For production snapshots, historical OpenAPI/Swagger exports, integration details or commercial inquiries (demos, onboarding, access to internal endpoints), write to support@tranza.io. If you spot outdated entries or missing info, report them to the same address and we will sort it out.
This request returns detailed information about a cryptocurrency address (balances, metadata, AML info and status). Provide the Address and ApiKey in the request. Use this method to inspect an address or to check its current balance and AML score.
| Address required | string Cryptocurrency address to inspect. |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "Address": "string",
- "PublicKey": "string",
- "ApiKey": "string"
}{- "AddressesResponce": [
- {
- "Address": "string",
- "Balance": 0,
- "AvailableBalance": 0,
- "Merchant": "string",
- "MerchantId": 0,
- "Label": "string",
- "Comment": "string",
- "Created": "2019-08-24T14:15:22Z",
- "LastTransactionDate": "2019-08-24T14:15:22Z",
- "IncomingTransactionsCount": 0,
- "OutgoingTransactionsCount": 0,
- "Currency": "string",
- "RiskScore": 0,
- "LastCheckDate": "2019-08-24T14:15:22Z",
- "IsActual": true,
- "Aml": {
- "Score": 0,
- "Level": "string",
- "LastChecked": "2019-08-24T14:15:22Z",
- "Sources": [
- {
- "SourceName": "string",
- "Percentage": 0,
- "SourceRisk": 0
}
], - "Counterparties": [
- {
- "Name": "string",
- "Type": "string",
- "Hops": 0
}
]
}
}
], - "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Retrieve information for multiple addresses associated with the wallet. Use filters or ApiKey to scope the result. The response contains an array of address records with balances and metadata.
| Addresses required | Array of strings Array of cryptocurrency addresses to inspect. |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "Addresses": [
- "string"
], - "PublicKey": "string",
- "ApiKey": "string"
}{- "Id": 0,
- "ExternalId": "string",
- "Label": "string",
- "Address": "string",
- "Created": "2019-08-24T14:15:22Z",
- "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Update address attributes such as label, comment, callback URL, visibility and status. Partial updates are supported — only fields present in the request are changed. Identify the address either by internal Id or by Address+Symbol.
| Id | integer or null <int64> Internal address ID. Alternative to the Address+Symbol pair for identification. |
| Address | string or null Full crypto address. Use together with Symbol if Id is not provided. |
| Symbol | string or null Blockchain/asset symbol (e.g., BTC, ETH, TRX, USDT-TRC20). Used together with Address. |
| Comment | string or null Free-form note or metadata for the address. |
| Label | string or null Internal label or business tag for the address (e.g., your client/user ID). |
| Status | integer <int32> (AddressStatus) Enum: 1 2 Active = 1, Inactive = 2 |
| Details | string or null Additional details or metadata. |
| ExpiryDate | string or null <date-time> Optional expiration datetime for this address. |
| IsHidden | boolean or null Whether to hide this address in the UI (true/false). |
| CallBackLink | string or null Callback URL override for this specific address (incoming transaction notifications). |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "Id": 0,
- "Address": "string",
- "Symbol": "string",
- "Comment": "string",
- "Label": "string",
- "Status": 1,
- "Details": "string",
- "ExpiryDate": "2019-08-24T14:15:22Z",
- "IsHidden": true,
- "CallBackLink": "string",
- "PublicKey": "string",
- "ApiKey": "string"
}{- "Id": 0,
- "ExternalId": "string",
- "Label": "string",
- "Address": "string",
- "Created": "2019-08-24T14:15:22Z",
- "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Request creation (or retrieval) of a deposit address for a specified currency. Use the 'Currency' field and your ApiKey. Set 'New' = true to force creation of a new address; otherwise the service may return an existing one suitable for deposits.
| ExternalId | string or null DEPRECATED. Former external customer identifier — do not use for new integrations. Use Label instead. |
| Currency required | string Currency symbol, currently available parameters "BTC" and "USDT-TRC20" |
| New required | boolean "false" allow to keep an existing crypto address for all user deposit. "true" - means for deposit to generate a new address. |
| ExpectedAmount | number or null <double> Expected amount |
| CallBackLink | string or null Callback reference |
| AdditionalInfo | string or null DEPRECATED. Former additional info field — do not use for new integrations. Use Label instead. |
| Comment | string or null Optional free-form note or metadata for this deposit address request. |
| Label | string or null Label for the address — your client/user identifier or business tag. Use it instead of the legacy ExternalId to associate the generated address with a customer. |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "ExternalId": "string",
- "Currency": "string",
- "New": true,
- "ExpectedAmount": 0,
- "CallBackLink": "string",
- "AdditionalInfo": "string",
- "Comment": "string",
- "Label": "string",
- "PublicKey": "string",
- "ApiKey": "string"
}{- "Id": 0,
- "ExternalId": "string",
- "Label": "string",
- "Address": "string",
- "Created": "2019-08-24T14:15:22Z",
- "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Returns the total number of transactions currently in the processing queue. Useful for health checks and monitoring queue depth.
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "PublicKey": "string",
- "ApiKey": "string"
}{- "QueuedTotalCount": 0,
- "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Retrieve a paginated list of transactions. Supports filtering, sorting, and pagination (Page, Count, Filter, SortField, SortDirection). Use this method to obtain transaction history or to find specific transactions by address, time range, status, or amount. Both Page and Count are required — the endpoint never returns all records at once. Filtering and search are applied only within the specified page; to scan the entire dataset, iterate through pages (Page + 1, Page + 2, etc.) until fewer results are returned than Count or Total is reached. For full syntax, supported fields, and examples of using the Filter parameter, refer to the internal guide “Using Dynamic Filtering.” If you don’t have access, please request it from Tranza support.
| Page required | integer <int32> [ 1 .. 2147483647 ] Page number (1-based). Must be >= 1. Always send together with Count. |
| Count required | integer <int32> [ 1 .. 200 ] Items per page. Range: 1–200. Always send together with Page. |
| Search | string or null Free-text search string applied across endpoint-specific fields. |
| SortField | string or null Field name to sort by (endpoint-specific). Example: "Created". |
| SortDirection | string or null Sort direction: "asc" for ascending, "desc" for descending. |
| Filter | any or null Dynamic filter object (endpoint-specific). Allows building complex AND/OR/NOT conditions by field, operator, and value. See the internal guide “Using Dynamic Filtering” for full syntax, examples, and supported fields. If you don’t have access to this document, please request it from Tranza support. |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "Page": 1,
- "Count": 1,
- "Search": "string",
- "SortField": "string",
- "SortDirection": "string",
- "Filter": null,
- "PublicKey": "string",
- "ApiKey": "string"
}{- "Page": 0,
- "Count": 0,
- "List": [
- {
- "Id": 0,
- "Type": 1,
- "Date": "2019-08-24T14:15:22Z",
- "NodeTime": "2019-08-24T14:15:22Z",
- "BlockNumber": 0,
- "TxId": "string",
- "Cryptocurrency": "string",
- "MerchantId": 0,
- "MerchantName": "string",
- "Initiator": "string",
- "InitiatorType": "None",
- "InitiatorId": "string",
- "Amount": 0,
- "AmountUSD": 0,
- "Rate": 0,
- "Commission": 0,
- "CommissionCurrency": "string",
- "CommissionDetails": "string",
- "DestinationAddress": "string",
- "Comment": "string",
- "Status": 0,
- "FailReason": "string",
- "OrderType": "None",
- "BroadcastCompleted": "2019-08-24T14:15:22Z",
- "ApproveStatus": 0,
- "Direction": 0,
- "UserId": 0,
- "AmountMinusCommission": 0,
- "CommissionType": "None",
- "HasRepeats": true,
- "OrderId": 0,
- "UserName": "string",
- "ApproveUserId": 0,
- "UserApproved": "string",
- "ApprovedDate": "2019-08-24T14:15:22Z",
- "ApproveComments": "string",
- "CallbackConfirmationStatus": 0,
- "SenderAddresses": [
- "string"
], - "AddressLabels": [
- "string"
]
}
], - "Offset": 0,
- "Total": 0,
- "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Create a withdrawal request from a specified source address to a destination address. Provide Amount, Currency and ApiKey; optional fields control commission handling, comments and withdrawal behavior. The response contains request status and possible error codes. Sample request:
{
"RequestId": "12",
"SourceAddress": "tb1q3x36ngn6fzes8ev0xjlpf37rgegty5u5s5qavq",
"DestinationAddress": "tb1qhvyv4mzy2rvtxtfcpmx9x4sr0mwnhxr0v82w35",
"Amount": "0.0005",
"Currency": "BTC",
"PublicKey": "R+G8IAuq81P8YE0THH++7g=="
}
Description of the request model
| RequestId | string or null Request ID. Needed to identify the answer. |
| SourceAddress | string or null The address from which funds are withdrawn |
| DestinationAddress | string or null The address to which the funds are credited |
| Amount | number <double> Withdrawal amount |
| Currency | string or null Withdrawal currency |
| IsSenderCommission | boolean true - commission is taken from the sender, false - from the receiver |
| Comment | string or null Payment comment |
| CommissionType | string (CommissionType) Enum: "None" "Fast" "Medium" "Slow" "Gas" "Energy" "Blockchain" None = 0, Fast = 1, Medium = 2, Slow = 3, Gas = 4, Energy = 5, Blockchain = 6 |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "RequestId": "string",
- "SourceAddress": "string",
- "DestinationAddress": "string",
- "Amount": 0,
- "Currency": "string",
- "IsSenderCommission": true,
- "Comment": "string",
- "CommissionType": "None",
- "PublicKey": "string",
- "ApiKey": "string"
}{- "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}{- "RequestId": "string",
- "Id": 0,
- "ExternalId": "string",
- "AdditionalInfo": "string",
- "Label": "string",
- "AddressComment": "string",
- "Address": "string",
- "SenderAddresses": "string",
- "Amount": 0,
- "Currency": "string",
- "Rate": 0,
- "TxId": "string",
- "Date": "2019-08-24T14:15:22Z",
- "Error": "string",
- "Comment": "string",
- "Initiator": "None",
- "Type": 1,
- "Status": 0,
- "Aml": {
- "Score": 0,
- "Level": "string",
- "LastChecked": "2019-08-24T14:15:22Z",
- "Sources": [
- {
- "SourceName": "string",
- "Percentage": 0,
- "SourceRisk": 0
}
], - "Counterparties": [
- {
- "Name": "string",
- "Type": "string",
- "Hops": 0
}
]
}, - "Checksum": "string"
}Initiate an AML risk check for a specific crypto address on a selected blockchain. The check runs asynchronously and returns a RequestUid which can be used to query the result with /Aml/CheckStatus.
| Address | string Address to check (cryptocurrency address). |
| Blockchain | string Blockchain of the address (e.g. BTC, ETH, TRON). |
| PublicKey | string DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "RequestUid": "string",
- "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Retrieve the status or final result of an AML check previously started with /Aml/Check. Provide the RequestUid returned by the initial request.
| RequestUID | string Request UID returned by /Aml/Check — use this value to fetch the check result. |
| PublicKey | string DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "RiskScore": 0,
- "CheckStatus": "None",
- "SignalDetails": {
- "Signals": {
- "property1": 0,
- "property2": 0
}
}, - "Counterparties": {
- "Counterparties": [
- {
- "Name": "string",
- "Type": "string",
- "Hops": 0
}
]
}, - "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Retrieve information about the wallet/merchant identified by the provided ApiKey, including name, label, callback settings and allowed withdrawal IPs.
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "PublicKey": "string",
- "ApiKey": "string"
}{- "Merchant": {
- "Id": 0,
- "Name": "string",
- "Label": "string",
- "PublicKey": "string",
- "CallBackLink": "string",
- "PublicWithdrawalIPs": "string",
- "IsArchive": true,
- "Logo": "string",
- "Modified": "2019-08-24T14:15:22Z",
- "Created": "2019-08-24T14:15:22Z"
}, - "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Mark a merchant as favorite in the listing. Favorite merchants are prioritized in UI lists. Requires valid ApiKey and merchant identifier.
| MerchantId | integer <int64> Required if API key not master. |
| IsFavorite required | boolean true — mark as favorite; false — remove from favorites. |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "MerchantId": 0,
- "IsFavorite": true,
- "PublicKey": "string",
- "ApiKey": "string"
}{- "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Retrieve configuration and localization parameters for payment pages (project settings, available localizations and page parameters).
The request containing the data to get project data.
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "PublicKey": "string",
- "ApiKey": "string"
}{- "Data": {
- "Project": {
- "Id": 0,
- "IsActive": true,
- "PaymentServiceHost": "string",
- "PaymentServiceKey": "string",
- "Secret": "string",
- "LanguageId": 0,
- "Label": "string",
- "MerchantId": 0,
- "TimeForPaymentMinutes": 0,
- "BaseCurrency": "string",
- "CurrenciesList": "string",
- "AmountDecimals": 0,
- "ServiceFee": 0,
- "ConfirmationFee": 0,
- "AmlVerificationSettings": "string",
- "WebsiteUrl": "string",
- "SuccessfulPaymentUrl": "string",
- "FailedPaymentUrl": "string",
- "BacklinkUrl": "string",
- "DefaultButtonCode": "string",
- "ApiKey": "string",
- "Created": "2019-08-24T14:15:22Z",
- "Modified": "2019-08-24T14:15:22Z"
}, - "Localization": [
- {
- "Id": 0,
- "ProjectId": 0,
- "LanguageId": 0,
- "ProjectName": "string",
- "LogoFileName": "string",
- "Logo": "string",
- "Agreement": "string",
- "SupportEmail": "string",
- "SupportTelegram": "string",
- "TermsAndConditions": "string",
- "HelpTopic": "string",
- "TermsTopic": "string",
- "PrivacyTopic": "string",
- "Created": "2019-08-24T14:15:22Z",
- "Modified": "2019-08-24T14:15:22Z"
}
]
}, - "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Retrieve or update invoice information for payment pages. Use this endpoint to inspect invoice details and current payment state. The method workflow is as follows:
ApiKey is provided and valid.ApiKey and it's enabled.InvoiceId is empty or non-existing, a new invoice is created.Amount is not provided or is zero, the invoice is initialized at the SetAmount step.Amount is provided, but Blockchain, and Symbol are missing, the invoice is initialized at the SelectCurrency step.Amount, Blockchain, and Symbol are all provided, the invoice is initialized at the AwaitingPayment step.SetAmount: requires Amount to proceed to the next step.SelectCurrency: requires Blockchain, and Symbol to proceed to the next step.AwaitingPayment or Processed: returns the invoice without changes (only Label can be changed at this moment).The request containing the data to modify invoice.
| InvoiceId | string or null The external id of invoice. If unsent – the new invoice should be created. |
| Amount | number or null <double> The amount to be paid in the user-selected currency. |
| Blockchain | string or null The blockchain network associated with the payment. |
| Symbol | string or null The symbol of the cryptocurrency associated with the payment. |
| Rate | number or null <double> The exchange rate used to calculate InvoiceAmount in currency for AmountToPay in cryptocurrency. |
| Label | string or null The label of invoice. |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "InvoiceId": "string",
- "Amount": 0,
- "Blockchain": "string",
- "Symbol": "string",
- "Rate": 0,
- "Label": "string",
- "PublicKey": "string",
- "ApiKey": "string"
}{- "Invoice": {
- "Id": 0,
- "DueDate": "2019-08-24T14:15:22Z",
- "CompletedAt": "2019-08-24T14:15:22Z",
- "Label": "string",
- "ProjectId": 0,
- "Status": 0,
- "CurrentStep": 1,
- "ExternalId": "string",
- "Currency": "string",
- "InvoiceAmount": 0,
- "CryptoCurrencyId": 0,
- "Blockchain": "string",
- "Symbol": "string",
- "Rate": 0,
- "ServiceFeePercent": 0,
- "AmountToPayWithoutFee": 0,
- "ServiceFeeAmount": 0,
- "ConfirmationFee": 0,
- "MerchantId": 0,
- "DestinationAddress": "string",
- "AmountToPay": 0,
- "DueAmount": 0,
- "PaidAmount": 0,
- "PaidInBaseCurrency": 0,
- "TxIds": "string",
- "Created": "2019-08-24T14:15:22Z",
- "Modified": "2019-08-24T14:15:22Z"
}, - "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Returns balances for wallets accessible by the provided ApiKey. Use this method to get per-wallet currency balances and summaries for reporting or reconciliation.
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "PublicKey": "string",
- "ApiKey": "string"
}{- "Wallets": [
- {
- "WalletId": 0,
- "WalletName": "string",
- "Balance": [
- {
- "CurrencyId": 0,
- "CurrencyName": "string",
- "Balance": 0
}
]
}
], - "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Return the list of currencies supported by the wallet. Use ApiKey to scope results if needed. The response contains currency symbols and identifiers used in other API calls.
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "PublicKey": "string",
- "ApiKey": "string"
}{- "Cryptocurrencies": [
- {
- "Id": 0,
- "Symbol": "string",
- "Name": "string"
}
], - "Status": "string",
- "ErrorCode": "string",
- "ErrorMessage": "string",
- "Error": {
- "Code": "string"
}
}Trigger start of blockchain synchronization process for the node/service. Intended for maintenance and operational control; requires appropriate privileges.
| Addresses | Array of strings or null Optional list of crypto addresses to (re)scan first. If provided, the sync prioritizes or limits processing to these addresses. If omitted, sync runs for the whole currency/blockchain scope defined by Symbol/Blockchain. |
| Blockchain | string or null Target blockchain (e.g., "Bitcoin", "Ethereum", "TRON"). Use when you need a chain-level sync. You must specify at least one of: Blockchain or Symbol. |
| Symbol | string or null Currency/asset symbol to sync (e.g., BTC, ETH, TRX, USDT-TRC20). Use when you need currency-level sync. You must specify at least one of: Blockchain or Symbol. |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "Addresses": [
- "string"
], - "Blockchain": "string",
- "Symbol": "string",
- "PublicKey": "string",
- "ApiKey": "string"
}Stop the blockchain synchronization process. Use only in maintenance scenarios and with care to avoid data inconsistency.
| SyncId | string or null Identifier of the running sync job to stop. Returned by /BlockchainSync/Start (or visible in your ops logs/monitoring). Required — the request will fail if SyncId is missing or does not match an active job. |
| PublicKey | string or null DEPRECATED. Former public key field — do not use for new integrations. Use ApiKey instead. |
| ApiKey | string or null API key used to authenticate requests to the Tranza Public API. Obtain it in the client application on the "Wallets" page, in the "API Key" column. Keep this key secret. |
{- "SyncId": "string",
- "PublicKey": "string",
- "ApiKey": "string"
}