POST
/
rpc
/
Builder
/
MonthlyTransactingWalletsBySegment
curl --request POST \
  --url https://api.sequence.app/rpc/Builder/MonthlyTransactingWalletsBySegment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "filter": {
    "projectId": 122,
    "startDate": "2024-09-30",
    "endDate": "2024-10-10"
  }
}'
{
  "data": {
    "segment1": [
      {
        "value": 100,
        "label": "2024-09"
      },
      {
        "value": 120,
        "label": "2024-10"
      }
    ],
    "segment2": [
      {
        "value": 80,
        "label": "2024-09"
      },
      {
        "value": 95,
        "label": "2024-10"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Secret JWT token for authenticating requests obtained from Sequence Builder - should not be exposed publicly.

Body

application/json
filter
object

Response

200
application/json
OK
data
object

map<string,[]Chart>