Monitor upcoming ICOs, IDOs, and token launches across launchpads with funding data and schedules
Crypto Launch Tracker aggregates data from major crypto launchpads and listing sites to track upcoming token launches. Get pre-launch intelligence including project details, team backgrounds, funding rounds, tokenomics, and scheduled launch dates for informed investment decisions.
graph LR
A["Input: Launch Type / Status"] --> B["Crawlee Engine"]
B --> C["Launchpad Sites"]
C --> D["Data Extraction"]
D --> E["Clean & Structure"]
E --> F["Output: JSON/CSV"]
style A fill:#F5C542,stroke:#D4A017,color:#1a1a2e
style B fill:#6366f1,stroke:#4338ca,color:#ffffff
style C fill:#f97316,stroke:#c2410c,color:#ffffff
style D fill:#8b5cf6,stroke:#6d28d9,color:#ffffff
style E fill:#06b6d4,stroke:#0891b2,color:#ffffff
style F fill:#34d399,stroke:#065f46,color:#1a1a2e
sequenceDiagram
participant U as User
participant A as Crypto Launch Tracker
participant T as Launchpad Sites
participant D as Apify Dataset
U->>A: Provide input (Launch Type / Status)
A->>A: Validate & configure
A->>T: Navigate & extract data
T-->>A: Raw HTML / JSON
A->>A: Parse, clean & deduplicate
A->>D: Store structured results
D-->>U: Download JSON / CSV / Excel
Step-by-step:
- Input Validation — Your configuration is validated and the scraping session is initialized with optimal proxy settings
- Smart Crawling — Crawlee manages request queues, retries, and proxy rotation automatically for maximum reliability
- Data Extraction — Structured data is parsed from each page using optimized selectors and anti-detection measures
- Deduplication — Results are deduplicated and cleaned to ensure high data quality with no duplicates
- Output Delivery — Clean, structured data is saved to your Apify dataset for download or API access
| Parameter | Type | Description |
|---|---|---|
launchType |
String |
Type: ico, ido, ieo, fairlaunch, presale |
status |
String |
Status: upcoming, active, ended |
blockchain |
String |
Target blockchain filter |
maxResults |
Number |
Maximum launches to track |
minRaise |
Number |
Minimum fundraise amount in USD |
{
"launchType": "ido",
"status": "upcoming",
"blockchain": "solana",
"maxResults": 25,
"minRaise": 500000
}| Field | Type | Description |
|---|---|---|
projectName |
String |
Project/token name |
symbol |
String |
Token ticker symbol |
launchType |
String |
Type of launch (ICO/IDO/IEO) |
launchDate |
String |
Scheduled launch date |
platform |
String |
Launchpad platform |
raiseTarget |
Number |
Target fundraise amount |
tokenPrice |
Number |
Initial token price |
blockchain |
String |
Target blockchain |
website |
String |
Project website URL |
socialLinks |
Object |
Twitter, Telegram, Discord links |
{
"projectName": "SolFi Protocol",
"symbol": "SOLFI",
"launchType": "IDO",
"launchDate": "2026-03-25",
"platform": "Raydium AcceleRaytor",
"raiseTarget": 2000000,
"tokenPrice": 0.05,
"blockchain": "Solana",
"website": "https://solfi.io",
"socialLinks": {
"twitter": "@solfi_protocol",
"telegram": "t.me/solfi"
}
}- Investment Research — Discover and evaluate upcoming token launches before they go live
- Portfolio Strategy — Plan investment allocation based on upcoming launch schedules
- Market Intelligence — Track fundraising trends and popular launch platforms across crypto
- Due Diligence — Collect team and project data for pre-investment research
flowchart TD
subgraph Input
A["Launch Type / Status"] --> B[Proxy Configuration]
B --> C[Max Results & Filters]
end
subgraph Processing
D[Smart Request Queue] --> E[Anti-Bot Handling]
E --> F[Data Extraction]
F --> G[Deduplication & Cleaning]
end
subgraph Output
H[JSON Dataset] --> I[CSV Export]
I --> J[API Access]
end
Input --> Processing --> Output
style A fill:#F5C542,stroke:#D4A017,color:#1a1a2e
style G fill:#06b6d4,stroke:#0891b2,color:#ffffff
style J fill:#34d399,stroke:#065f46,color:#1a1a2e
This actor uses Apify's Pay-Per-Event pricing. You only pay for what you use.
| Event | Price | Description |
|---|---|---|
launch-tracked |
$0.005 | Per token launch extracted and tracked |
project-profiled |
$0.01 | Per project deep profile |
Free tier available on Apify. No credit card required to start.
- Go to Crypto Launch Tracker on Apify Store
- Click "Try for free"
- Configure your input parameters
- Click "Start" and wait for results
- Download your data as JSON, CSV, or Excel
curl -X POST "https://api.apify.com/v2/acts/george.the.developer~crypto-launch-tracker/runs" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-d '{"launchType":"ido","status":"upcoming","blockchain":"solana","maxResults":25,"minRaise":500000}'from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("george.the.developer/crypto-launch-tracker").call(
run_input={
"launchType": "ido",
"status": "upcoming",
"blockchain": "solana",
"maxResults": 25,
"minRaise": 500000
}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)| Technology | Purpose |
|---|---|
| Node.js | Runtime environment |
| Crawlee | Web scraping and crawling framework |
| Cheerio | Fast HTML parsing and data extraction |
| Apify SDK | Actor lifecycle, storage, and proxy management |
More data extraction tools by George The Developer:
- Reddit Scraper Pro — Extract posts, comments, user profiles, and subreddit data from Reddit at scale
- AI Training Data Scraper — Collect structured, clean datasets from the web purpose-built for training machi
- Influencer Marketing Intel — Discover and analyze social media influencers with engagement metrics, audience
- Google Maps Leads & Website Audit — Extract business leads from Google Maps with automated website audits for contac
- App Review Pain Miner — Extract and analyze app store reviews to discover user pain points, feature requ
View all actors on Apify Store >>>
- Apify Store: https://apify.com/george.the.developer/crypto-launch-tracker
- GitHub Issues: Report a bug
- Author: George The Developer
MIT License. See LICENSE for details.
Built with Crawlee and the Apify SDK by George The Developer. Star this repo if you find it useful!