Skip to content

the-ai-entrepreneur-ai-hub/crypto-launch-tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Crypto Launch Tracker

Monitor upcoming ICOs, IDOs, and token launches across launchpads with funding data and schedules

Try on Apify GitHub License: MIT


Overview

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.

Node.js Crawlee Cheerio Apify


Architecture

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
Loading

How It Works

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
Loading

Step-by-step:

  1. Input Validation — Your configuration is validated and the scraping session is initialized with optimal proxy settings
  2. Smart Crawling — Crawlee manages request queues, retries, and proxy rotation automatically for maximum reliability
  3. Data Extraction — Structured data is parsed from each page using optimized selectors and anti-detection measures
  4. Deduplication — Results are deduplicated and cleaned to ensure high data quality with no duplicates
  5. Output Delivery — Clean, structured data is saved to your Apify dataset for download or API access

Input Parameters

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

Input Example

{
  "launchType": "ido",
  "status": "upcoming",
  "blockchain": "solana",
  "maxResults": 25,
  "minRaise": 500000
}

Output Fields

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

Output Example

{
  "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"
  }
}

Use Cases

  • 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

Data Flow

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
Loading

Pricing

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.


Getting Started

Run on Apify Console

  1. Go to Crypto Launch Tracker on Apify Store
  2. Click "Try for free"
  3. Configure your input parameters
  4. Click "Start" and wait for results
  5. Download your data as JSON, CSV, or Excel

Run via API

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}'

Run with Python

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)

Tech Stack

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

Related Actors

More data extraction tools by George The Developer:

View all actors on Apify Store >>>


Support


License

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!

About

Crypto Launch Tracker - ICO & Token Launch Intelligence | Track New Cryptocurrency Launches | Apify Actor

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors