# CC Space Canton Network explorer and data API by ITRocket. Indexed ledger data — updates, transfers, rewards, parties, validators, burns, CNS names, featured apps, locking, instruments and prices — over REST. Base URL: https://cc-api.itrocket.space Two ways to pay: per request in Canton Coin without an account, or with an API key billed in credits. ## Agent API — no signup, no API key, pay in CC Price list: GET https://cc-api.itrocket.space/x402/rate-card Data: GET https://cc-api.itrocket.space/x402/api/v1/{endpoint} Any /api/v1 endpoint is reachable by prefixing its path with /x402. /x402/api/v1/stats returns exactly what /api/v1/stats returns. 1. Send the request without payment. The response is 402 with a PAYMENT-REQUIRED header: base64 JSON quoting amount, asset, payTo, feePayer, assetTransferMethod, synchronizerId and instrumentId. 2. Sign a TransferFactory_Transfer on Canton mainnet for exactly that quote, naming the merchant as receiver. Do not submit it; the facilitator relays it and pays the traffic, settling in one transaction. 3. Resend the request with a PAYMENT-SIGNATURE header. 4. The response carries the data and a PAYMENT-RESPONSE settlement receipt. Call GET /x402/rate-card for the current price before paying. At the time of writing: 0.0254 CC per request, network canton:mainnet, facilitator https://facilitator.ftptech.xyz Failed requests are not charged. Settlement runs only after the upstream returns a successful response; upstream errors pass through unpaid. ## Developer API — API key, billed in credits GET https://cc-api.itrocket.space/api/v1/{endpoint} Authorization: Bearer API keys are issued from https://cc.itrocket.space under account settings. One API call costs one credit. Credits are purchased with Canton Coin at the rate shown in the account, and also pay for validator monitoring alerts. ## Endpoints 45 endpoints in one versioned namespace, grouped as in the reference. Within a group, point-in-time data comes first and time series last. An endpoint listed under two groups is one endpoint at one path. Parameters and response schemas: https://cc-api.itrocket.space/openapi.json ## Parties & Wallets ### Parties /api/v1/parties/{party_id} profile, wallet, CNS names, recent operations, reward stats /api/v1/parties/{party_id}/operations paged operations /api/v1/parties/{party_id}/rewards claimed rewards grouped by claim update /api/v1/parties/{party_id}/balance wallet balance and amulets /api/v1/party-names bulk CNS name lookup by party ID /api/v1/parties/{party_id}/reward-activity party reward volume over time /api/v1/parties/{party_id}/reward-stats party reward distribution by type /api/v1/parties/{party_id}/balance-changes party balance over time /api/v1/parties/{party_id}/cc-flow party CC earned and burned over time ### Wallets /api/v1/parties/{party_id}/balance wallet balance and amulets /api/v1/wallets/top largest balances on the network /api/v1/validators/balances balances for all validators and SVs ### CNS /api/v1/cns CNS entries /api/v1/cns/search CNS search /api/v1/party-names bulk CNS name lookup by party ID ## Validators & Super Validators ### Validators/SVs /api/v1/parties/{party_id} profile for a validator or SV — is_validator / is_sv flags, wallet, rewards /api/v1/parties/{party_id}/operations paged operations /api/v1/validators/balances balances for all validators and SVs /api/v1/validators/history/{id}/balance current balance and change over a period /api/v1/validators/history/{id}/balance/history balance time series /api/v1/validators/history/{id}/traffic current traffic overview /api/v1/validators/history/{id}/traffic/usage traffic usage delta over a period /api/v1/validators/history/{id}/traffic/purchases purchase deltas for 24h, 7d, 30d, and 3m /api/v1/validators/history/{id}/uptime uptime history over a period ## Transfers, Offers & Preapprovals ### Transfers /api/v1/transfers transfers /api/v1/transfers/{id} transfer detail /api/v1/transfer-activity transfer volume over time ### Offers /api/v1/offers offers /api/v1/offer-activity offer counts over time ### Preapprovals /api/v1/preapprovals transfer preapprovals /api/v1/preapproval-activity preapproval counts over time ### Subscriptions /api/v1/subscriptions subscriptions ## Updates ### Updates /api/v1/updates ledger updates, newest first; private verdict rows on request /api/v1/updates/{id} update detail ## Rewards & Burns ### Rewards /api/v1/rewards reward coupons /api/v1/parties/{party_id}/rewards claimed rewards grouped by claim update /api/v1/reward-activity reward volume over time /api/v1/reward-stats reward distribution by type /api/v1/parties/{party_id}/reward-activity party reward volume over time /api/v1/parties/{party_id}/reward-stats party reward distribution by type ### Burns /api/v1/burns canton Coin burns /api/v1/parties/{party_id}/cc-flow party CC earned and burned over time ## Featured Apps & Locking ### FeaturedApps /api/v1/featured-apps featured app providers, keyed on the right that minted each marker; view=beneficiaries keys on who received instead. periods 6h/1d/7d/30d/6m/1y/all; parties idle 30d are omitted; response states from/to/view /api/v1/featured-apps/{party_id} featured app detail ### Locking /api/v1/fa-locking CIP-0116 featured app locking registry /api/v1/sv-locking per-SV locking tier, weight, wallets, compliance ## Network ### Stats /api/v1/stats row counts per table ### Price /api/v1/price governance price of Canton Coin ### Instruments /api/v1/instruments CIP-0056 Token Standard instruments /api/v1/instruments/{admin}/{id} instrument detail ### Search /api/v1/search parties, updates, CNS, contracts, transfers, verdicts ### System /api/v1/indexing-status indexer cursor positions ## Governance ### Governance /api/v1/governance/voterequests super-validator proposals open for voting /api/v1/governance/voteresults decided proposals with their outcome ## Reference API reference: https://cc.itrocket.space/api-reference OpenAPI: https://cc-api.itrocket.space/openapi.json Explorer: https://cc.itrocket.space