Skip to main content
POST
/
v0
/
activities
/v0/activities
curl --request POST \
  --url https://example.com/api/scan/v0/activities \
  --header 'Content-Type: application/json' \
  --data '
{
  "page_size": 123,
  "begin_after_id": "<string>"
}
'
{
  "activities": [
    {
      "activity_type": "transfer",
      "event_id": "<string>",
      "date": "2023-11-07T05:31:56Z",
      "domain_id": "<string>",
      "offset": "<string>",
      "round": 123,
      "transfer": {
        "sender": {
          "party": "<string>",
          "sender_change_fee": "<string>",
          "sender_change_amount": "<string>",
          "sender_fee": "<string>",
          "holding_fees": "<string>",
          "input_amulet_amount": "<string>",
          "input_app_reward_amount": "<string>",
          "input_validator_reward_amount": "<string>",
          "input_sv_reward_amount": "<string>",
          "input_validator_faucet_amount": "<string>"
        },
        "receivers": [
          {
            "party": "<string>",
            "amount": "<string>",
            "receiver_fee": "<string>"
          }
        ],
        "balance_changes": [
          {
            "party": "<string>",
            "change_to_initial_amount_as_of_round_zero": "<string>",
            "change_to_holding_fees_rate": "<string>"
          }
        ],
        "description": "<string>",
        "transferInstructionReceiver": "<string>",
        "transferInstructionAmount": "<string>",
        "transferInstructionCid": "<string>",
        "transfer_kind": "create_transfer_instruction"
      },
      "mint": {
        "amulet_owner": "<string>",
        "amulet_amount": "<string>"
      },
      "tap": {
        "amulet_owner": "<string>",
        "amulet_amount": "<string>"
      },
      "abort_transfer_instruction": {
        "abort_kind": "withdraw",
        "transfer_instruction_cid": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.canton.network/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
page_size
integer<int64>
required

The maximum number of activity items returned for this request.

begin_after_id
string

Minimal event_id for returned activities. Note that all activities carry some monotonically-increasing event_id. begin_after_id sets the minimum value for event_id's for the query.

Response

ok

activities
object[]
required