50 credits per request
Multipliers
Multipliers
In Query field “connectionId”: credits are multiplied by the number of values.
If the value of “connectionId” in Query is “all”, multiplier is 500 credits.
In Body field “wallets”: credits are multiplied by the number of values.
If the value of “wallets” in Body is “all”, multiplier is 500 credits.
Single wallet
Single wallet
Provide query parameters
{ address: “0x123…”, connectionId: “ethereum” }
{ address: “0x123…”, connectionId: “ethereum” }
Multiple wallets
Multiple wallets
Provide a body with
{ wallets: [{ address: “0x123…”, connectionId: “ethereum” }] }
{ wallets: [{ address: “0x123…”, connectionId: “ethereum” }] }
Authorizations
API key needed to access the endpoints. Example: 'demo-api-key'
Query Parameters
Wallet address for single wallet sync
The identifier of connection for single wallet sync, which you received from /wallet/blockchains call response. Can be a single network (e.g., "ethereum") or a comma-separated list of networks or "all" for all connections.
Body
application/json
Array of wallets to sync transactions for
Example:
[
{
"address": "0x123456789abcdef",
"connectionId": "ethereum"
},
{
"address": "0x987654321fedcba",
"connectionId": "polygon"
}
]Response
Start syncing transactions
The current synchronization status of the portfolio
Available options:
syncing, synced Example:
"synced"