API referenceChain
Crowdloans
Last updated
List every crowdloan the chain has ever opened (#8696), with its terms and how much it raised, queried from the Crowdloan pallet's own NextCrowdloanId/Crowdloans storage at request time with 120s KV cache. Not paginated: the collection is bounded by NextCrowdloanId and fetched in one batched storage read. A dissolved crowdloan is omitted, so crowdloan_count can be lower than next_crowdloan_id. Every crowdloan on finney today is finalized, so this is a record of completed raises rather than a feed of open ones — read finalized and end rather than assuming liveness.
Response Body
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/api/v1/crowdloans"{ "data": { "crowdloan_count": 1, "crowdloans": [ { "cap_tao": 0.5, "contributors_count": 1, "creator": "example", "crowdloan_id": 1, "deposit_tao": 0.5, "end": 1, "finalized": false, "funds_account": "example", "has_dispatch_call": false, "min_contribution_tao": 0.5, "percent_raised": 0.5, "raised_tao": 0.5, "target_address": "example" } ], "field_sources": { "example": { "kind": "measured", "storage": "example" } }, "next_crowdloan_id": 1, "queried_at": "2026-06-01T00:00:00.000Z", "schema_version": 1 }, "meta": { "artifact_path": "example", "cache": "short", "contract_version": "2026-06-29.1", "generated_at": "2026-06-01T00:00:00.000Z", "pagination": { "collection": "example", "cursor": 1, "limit": 1, "next_cursor": 1, "order": "asc", "returned": 1, "sort": "example", "total": 1 }, "published_at": "2026-06-01T00:00:00.000Z", "source": "live-cron-prober", "stale_contract": { "built_under": "example", "live": "example" } }, "ok": true, "schema_version": 1}