curl --request POST \
--url https://api.sequence.app/rpc/Analytics/WalletsByCountry \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"filter": {
"projectId": 122,
"startDate": "2024-09-30",
"endDate": "2024-10-10"
}
}'
{
"walletStats": [
{
"value": 50,
"label": "US"
},
{
"value": 30,
"label": "UK"
}
]
}
Get wallet statistics by country
curl --request POST \
--url https://api.sequence.app/rpc/Analytics/WalletsByCountry \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"filter": {
"projectId": 122,
"startDate": "2024-09-30",
"endDate": "2024-10-10"
}
}'
{
"walletStats": [
{
"value": 50,
"label": "US"
},
{
"value": 30,
"label": "UK"
}
]
}
Secret JWT token for authenticating requests obtained from Sequence Builder - should not be exposed publicly.
OK
The response is of type object
.
Was this page helpful?