Skip to Content
Provenonce is currently on Solana devnet. APIs may change.
API ReferenceGET /fees/summary

GET /api/v1/fees/summary

Public fee ledger. Returns current totals, per-type breakdown, allocation percentages, and the active fee schedule.

Auth: None (public)

Base URL: https://provenonce.io

Request

curl https://provenonce.io/api/v1/fees/summary

Response

{ "totals": { "collected_sol": 12.4500, "epoch": 3, "epoch_beat_range": [200000, 300000] }, "by_type": { "sigil": { "count": 47, "total_sol": 5.5000 }, "heartbeat": { "count": 12340, "total_sol": 6.1700 }, "reissuance": { "count": 39, "total_sol": 0.0078 }, "spawn": { "count": 15, "total_sol": 0.7722 } }, "allocations": { "protocol": 0.30, "infrastructure": 0.30, "development": 0.15, "insurance": 0.15, "community": 0.10 }, "fee_schedule": { "sigil": { "narrow_task": 0.05, "autonomous": 0.15, "orchestrator": 0.35 }, "heartbeat": { "standard": 0.0005, "volume": 0.0003, "high_volume": 0.0002 }, "heartbeat_volume_tiers": [ {"from": 1, "to": 1000, "fee_sol": 0.0005, "tier": "standard"}, {"from": 1001, "to": 5000, "fee_sol": 0.0003, "tier": "volume"}, {"from": 5001, "to": null, "fee_sol": 0.0002, "tier": "high_volume"} ], "reissuance": 0.0002, "billing_epoch_beats": 100000 } }

Response fields

totals

FieldTypeDescription
collected_solnumberTotal SOL collected across all fee types
epochnumberCurrent billing epoch number
epoch_beat_range[number, number]Start and end beat index of the current epoch

by_type

Per-fee-type breakdown. Each entry contains:

FieldTypeDescription
countnumberNumber of transactions of this type
total_solnumberTotal SOL collected for this type

Types: sigil, heartbeat, reissuance, spawn.

allocations

Fee split percentages. Always sums to 1.00.

AllocationPercentage
protocol30%
infrastructure30%
development15%
insurance15%
community10%

fee_schedule

The active fee schedule used for all current transactions. Includes SIGIL prices by identity class, heartbeat volume tiers, and the reissuance flat fee.

Rate limit: 60/min per IP

Last updated on