Returns a list of all the crowdloans and their associated paraIds.
successful operation
Block number and hash at which the call was made.
List of paras that have crowdloans.
const response = await fetch('https://dot-playbook.nownodes.io/paras/crowdloans', { method: 'GET', headers: {}, }); const data = await response.json();
{ "at": { "hash": "text", "height": "text" }, "funds": [ { "paraId": "text", "fundInfo": { "depositor": "text", "verifier": "text", "deposit": "text", "raised": "text", "end": "text", "cap": "text", "lastConstribution": "preEnding", "firstPeriod": "text", "lastPeriod": "text", "trieIndex": "text" } } ] }