icodrops.com APIicodrops.com ↗
Access structured ICO data from icodrops.com: active, upcoming, and ended ICO listings, project details, funding rounds, investors, and keyword search.
curl -X GET 'https://api.parse.bot/scraper/76b07962-2f33-4a7c-95ed-74dfc5509dba/get_active_icos?page=1&limit=3' \ -H 'X-API-Key: $PARSE_API_KEY'
Get a paginated list of active ICO projects with metadata including name, ticker, round type, raised amount, investors, and ecosystems.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| limit | integer | Number of projects per page. |
{
"type": "object",
"fields": {
"projects": "array of project objects with name, ticker, slug, url, round, raised, pre_valuation, categories, date, investors, ecosystems",
"total_pages": "integer, total number of pages available",
"current_page": "integer, current page number"
},
"sample": {
"data": {
"projects": [
{
"url": "https://icodrops.com/kalshi/",
"date": "from Q1, 2024",
"name": "Kalshi",
"slug": "kalshi",
"round": "Possible Retrodrop",
"raised": "$2.82 B",
"ticker": null,
"investors": [
"Andreessen Horowitz (a16z)",
"Multicoin Capital",
"Paradigm"
],
"categories": "Predictions",
"ecosystems": [],
"pre_valuation": "$22 B"
}
],
"total_pages": 15,
"current_page": 1
},
"status": "success"
}
}About the icodrops.com API
The ICO Drops API exposes 6 endpoints covering active, upcoming, and ended crypto fundraising projects listed on icodrops.com. Each project record returns up to 10 structured fields including ticker, round type, raised amount, pre-valuation, investors, and ecosystems. The get_project_details endpoint goes deeper, returning funding round history, social links, and full project descriptions by slug.
ICO Listings by Status
Three endpoints — get_active_icos, get_upcoming_icos, and get_ended_icos — return paginated project arrays, each supporting page and limit parameters. Every project object includes name, ticker, slug, url, round (the fundraising round type), raised, pre_valuation, categories, date, investors, and ecosystems. The response also surfaces total_pages and current_page so you can walk the full dataset without guessing offsets.
Project Details and Funding Rounds
get_project_details accepts a slug — the identifier as it appears in the icodrops.com URL path, such as zama or ethereum — and returns the canonical url, name, ticker, a summary (meta description), an optional description (full text), a links object mapping label to URL (covering properties like website, Twitter, and Discord), and a funding_rounds array. Each funding round object carries type, raised, date, and investors, making it straightforward to reconstruct a project's full capital history.
Search and URL Discovery
search_projects takes a free-text query and returns matching projects and venture capital entities, each with name, url, category, and raised. This is useful for keyword-based discovery across the entire icodrops.com dataset without knowing slugs in advance. For bulk collection, get_all_project_urls paginates raw project URLs filtered by category (accepted values: active-ico, upcoming-ico, ended-ico), returning a urls array along with count, total_pages, and current_page.
- Monitor active ICO rounds and track raised amounts as new projects open funding.
- Build a VC portfolio tracker by pulling investor names from
funding_roundsacross ended ICOs. - Compare pre-valuations across upcoming projects in a specific blockchain ecosystem.
- Aggregate project social links from
get_project_detailsto build outreach or monitoring pipelines. - Search for projects by keyword to surface competing teams in a given crypto niche.
- Compile historical funding data by iterating ended ICOs and extracting round type, date, and amount raised.
- Feed ICO metadata into a research dashboard that segments projects by category and ecosystem.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does icodrops.com have an official developer API?+
What does `get_project_details` return that the listing endpoints don't?+
get_project_details adds a links object (website, Twitter, Discord, etc.), a summary field, an optional full description, and a funding_rounds array with per-round type, raised, date, and investors. The listing endpoints (get_active_icos, get_upcoming_icos, get_ended_icos) return aggregate metadata per project but do not break out individual funding rounds.Can I filter ICO listings by category, ecosystem, or investor name?+
page and limit for pagination only; the get_all_project_urls endpoint accepts a category path (active-ico, upcoming-ico, ended-ico) but no further filters. You can fork this API on Parse and revise it to add filtering logic against the returned fields.Does the API cover token price or post-listing exchange data?+
How do I get a project's slug to use with `get_project_details`?+
slug field is returned directly in every project object from the listing endpoints (get_active_icos, get_upcoming_icos, get_ended_icos) and as part of the URLs returned by get_all_project_urls. It matches the path segment used in the icodrops.com project URL, for example zama from icodrops.com/zama.