Skip to main content
API referenceChain

Crowdloan Detail

Last updated

GET
/api/v1/crowdloans/{crowdloan_id}

Fetch one crowdloan's live state (#8696) from the Crowdloan pallet's Crowdloans storage map at request time with 120s KV cache. exists is null (not false) on RPC failure, distinct from a confirmed-absent id (exists:false) — an id can be legitimately absent because dissolve removes the record while NextCrowdloanId keeps counting.

Path Parameters

crowdloan_id*integer
Range0 <= value <= 4294967295

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/crowdloans/0"
{  "data": {    "crowdloan": {      "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"    },    "crowdloan_id": 1,    "exists": false,    "field_sources": {      "example": {        "kind": "measured",        "storage": "example"      }    },    "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}