Discover/crypto-fundraising API
live

crypto-fundraising APIcrypto-fundraising.info

Access crypto fundraising deals, investor portfolios, project details, and funding news from crypto-fundraising.info via a structured REST API.

Endpoint health
verified 4d ago
get_recent_fundraising_events
get_investors_list
get_investor_detail
get_biggest_fundraising_rounds
get_top_active_funds
11/11 passing latest checkself-healing
Endpoints
11
Updated
25d ago

What is the crypto-fundraising API?

The crypto-fundraising.info API exposes 11 endpoints covering fundraising deals, investor portfolios, project metadata, and news articles from the crypto-fundraising.info database. Use get_fundraising_deals to pull paginated deal flow with filters for round type, category, date range, and deal size, or use get_investor_detail to retrieve a named fund's full investment history. Each deal record includes project name, round type, date, amount raised, categories, and investors.

Try it
Page number for pagination.
Filter deals up to this amount (numeric string, e.g. '50000000').
Filter by project category.
Filter by tradable status.
Filter by date range.
Filter deals from this amount (numeric string, e.g. '1000000').
Filter by funding round type.
api.parse.bot/scraper/11d9c30f-fa5d-4139-aec7-a51871ae276a/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/11d9c30f-fa5d-4139-aec7-a51871ae276a/get_fundraising_deals?page=1&deal_to=50000000&category=DeFi&daterange=lastyear&deal_from=1000000&round_type=Seed' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace crypto-fundraising-info-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.crypto_fundraising_info_api import CryptoFundraising, RoundType, DateRange, TimeRange

client = CryptoFundraising()

# Search for DeFi-related projects
for project in client.projectsummaries.search(query="morpho"):
    print(project.post_title, project.post_type, project.post_name)
    detail = project.details()
    print(detail.name, detail.total_raised, detail.categories)
    for rnd in detail.rounds:
        print(rnd.date, rnd.amount, rnd.type)

# Browse recent seed-round deals
for deal in client.deals.list(round_type=RoundType.SEED, daterange=DateRange.THIRTY_DAYS):
    print(deal.project_name, deal.raised, deal.date, deal.categories)

# Check top investors this year
for investor in client.investors.list(range=TimeRange.THIS_YEAR):
    print(investor.name, investor.slug, investor.count)
    for entry in investor.portfolio.list():
        print(entry.project_name, entry.round, entry.date)

# Get biggest recent deals
for deal in client.deals.biggest():
    print(deal.project_name, deal.raised, deal.investors)

# Read latest news articles
for article in client.articles.list():
    print(article.title, article.category)
    body = article.content.get()
    print(body.title, body.content)
All endpoints · 11 totalmissing one? ·

Retrieve a paginated list of fundraising deals with optional filters. Returns up to 10 deals per page. Supports filtering by category, round type, deal amount range, date range, and tradable status. Results are ordered by most recent date first.

Input
ParamTypeDescription
pageintegerPage number for pagination.
deal_tostringFilter deals up to this amount (numeric string, e.g. '50000000').
categorystringFilter by project category.
tradablestringFilter by tradable status.
daterangestringFilter by date range.
deal_fromstringFilter deals from this amount (numeric string, e.g. '1000000').
round_typestringFilter by funding round type.
Response
{
  "type": "object",
  "fields": {
    "page": "integer indicating current page number",
    "deals": "array of deal objects with project_name, project_slug, round, date, raised, categories, investors"
  },
  "sample": {
    "data": {
      "page": 1,
      "deals": [
        {
          "date": "Jun 2026",
          "round": "Unknown",
          "raised": "175000000",
          "investors": [
            "Paradigm",
            "Andreessen Horowitz (a16z crypto)"
          ],
          "categories": [
            "DApp",
            "DeFi",
            "Lending/Borrowing"
          ],
          "project_name": "Morpho",
          "project_slug": "morpho"
        }
      ]
    },
    "status": "success"
  }
}

About the crypto-fundraising API

Deal Flow and Project Data

get_fundraising_deals returns up to 10 deals per page and accepts seven optional filters: page, deal_from, deal_to, category (e.g. DeFi, AI, Infrastructure), round_type (e.g. Seed, Series A, Pre-seed, M&A), tradable, and daterange (e.g. 30d, thisyear, lastyear). Each deal object carries project_name, project_slug, round, date, raised, categories, and investors. For deeper research, get_project_detail accepts a slug and returns all funding rounds with per-round amount, type, valuation, lead_investors, and investors, plus the project's total_raised, description, links, and categories.

Investor and Fund Intelligence

get_investors_list returns a ranked list of investors sorted by deal count and accepts a range parameter (all, 30d, thisyear, lastyear). Each entry includes name, slug, and count. get_investor_detail takes an investor slug (e.g. coinbase-ventures, a16z-crypto) and returns the fund's links object and a full portfolio array where each entry records project_name, project_slug, round, and date. get_top_active_funds pulls the homepage ranking of currently active funds with name, slug, and count fields.

Discovery and Search

get_all_projects returns the full site index — thousands of entries — each with post_title, post_type, post_name, id, and short_name, with no parameters required. search_projects_and_funds narrows that index by a keyword query and returns matching projects and funds with the same field shape. get_recent_fundraising_events and get_biggest_fundraising_rounds offer two prebuilt deal slices: the 5 most recent deals from the homepage and the largest deals by raised amount in the last 30 days, respectively.

News and Analysis

get_news_list returns paginated article metadata — title, slug, category, and url — while get_news_article retrieves the full title and content body for a specific article by slug. These endpoints cover the site's blog content including weekly deal round-ups and quarterly fundraising reports.

Reliability & maintenanceVerified

The crypto-fundraising API is a managed, monitored endpoint for crypto-fundraising.info — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when crypto-fundraising.info changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official crypto-fundraising.info API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
11/11 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track seed and pre-seed rounds in a specific category like AI or DeFi using get_fundraising_deals with category and round_type filters
  • Build an investor activity dashboard by combining get_investors_list with get_investor_detail to map portfolio holdings over time
  • Monitor the largest deals of the past 30 days using get_biggest_fundraising_rounds for competitive intelligence
  • Autocomplete project and fund search in a research tool using search_projects_and_funds against the full site index
  • Aggregate total capital raised per project by pulling total_raised and per-round valuation from get_project_detail
  • Surface weekly funding news digests by chaining get_news_list with get_news_article to extract full article content
  • Benchmark a fund's deal volume across time ranges by querying get_investors_list with range set to 30d, thisyear, and lastyear
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does crypto-fundraising.info offer an official developer API?+
crypto-fundraising.info does not publish an official public developer API or documented data access program. This Parse API is the structured programmatic interface for the site's data.
What does `get_project_detail` return beyond a deal's basic fields?+
get_project_detail returns a full funding history as an array of rounds, each with date, amount, type, valuation, lead_investors, and investors. It also includes a description, links object, categories, and a total_raised string aggregated across all rounds — more depth than the summary fields in get_fundraising_deals.
How many deals does `get_fundraising_deals` return per page, and can I adjust that?+
The endpoint returns up to 10 deals per page. The page size is fixed; use the page parameter to paginate through additional results. Seven filter parameters — including round_type, category, and daterange — can narrow the result set.
Does the API expose tokenomics, on-chain token prices, or vesting schedules for funded projects?+
Not currently. The API covers fundraising rounds, investor portfolios, project descriptions, and news articles. Token price data, on-chain metrics, and vesting details are not part of the response shapes. You can fork this API on Parse and revise it to add endpoints targeting those data sources.
Is there a way to retrieve all projects without paginating through deal results?+
get_all_projects returns the complete site index in a single call — no pagination required. Each entry includes post_title, post_type, post_name, id, and short_name. It does not return financial round data; for that, use get_project_detail with individual project slugs.
Page content last updated . Spec covers 11 endpoints from crypto-fundraising.info.
Related APIs in Crypto Web3See all →
icodrops.com API
Access structured data on active, upcoming, and ended Initial Coin Offerings listed on icodrops.com. Retrieve project metadata including ticker, round type, raised amounts, investors, and ecosystems. Look up individual projects by slug or search across all listings by keyword.
fundrazr.com API
Search and discover FundRazr crowdfunding campaigns by category, then access detailed information about campaign progress, activity, highlights, and organizer profiles. Get comprehensive insights into fundraising campaigns to track funding goals, supporter engagement, and campaign updates all in one place.
airdrops.io API
Discover and track crypto airdrops in real-time by browsing latest opportunities, searching by category, and viewing detailed project information including participation requirements and token details. Monitor live cryptocurrency prices and stay updated on hot and potential airdrops all in one place.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.
indiegogo.com API
Search and retrieve detailed information about Indiegogo crowdfunding campaigns, including project details, reward tiers, updates, comments, FAQs, and creator profiles. Discover featured campaigns, browse by category, and explore all projects from specific creators to find and analyze the crowdfunding campaigns you're interested in.
ketto.org API
Discover trending and searchable fundraisers on Ketto with detailed campaign information, updates, and community comments to find causes that matter to you. Access real-time platform statistics and browse fundraising campaigns across different categories to support or learn about active charitable initiatives.
cryptoslate.com API
Track real-time cryptocurrency prices and rankings, access detailed coin information and market overviews, and discover industry companies and key people in the crypto space. Stay informed with the latest cryptocurrency news articles and search across all available data to monitor assets and trends.
traded.co API
Access comprehensive deal data from Traded.co including real estate transactions, hotel deals, VC investments, and market awards, while searching listings and tracking top brokers and performers. Get detailed deal information, market news, and broker profiles to research properties, investments, and industry leaders.