Discover/crypto-fundraising.info API
live

crypto-fundraising.info APIcrypto-fundraising.info

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

Endpoints
11
Updated
28d ago
Try it
Page number for pagination.
Filter deals up to this amount (numeric string).
Filter by project category (e.g. DeFi, AI, Infrastructure, Payment).
Filter by tradable status.
Filter by date range (e.g. 30d, 90d, thisyear, lastyear).
Filter deals from this amount (numeric string).
Filter by funding round type (e.g. Seed, Series A, Series B, Pre-seed, Strategic, M&A, Public sale, Unknown).
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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/11d9c30f-fa5d-4139-aec7-a51871ae276a/get_fundraising_deals?page=2' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 11 totalclick to expand

Retrieve a paginated list of fundraising deals with optional filters. Returns up to 10 deals per page from the deal flow page.

Input
ParamTypeDescription
pageintegerPage number for pagination.
deal_tostringFilter deals up to this amount (numeric string).
categorystringFilter by project category (e.g. DeFi, AI, Infrastructure, Payment).
tradablestringFilter by tradable status.
daterangestringFilter by date range (e.g. 30d, 90d, thisyear, lastyear).
deal_fromstringFilter deals from this amount (numeric string).
round_typestringFilter by funding round type (e.g. Seed, Series A, Series B, Pre-seed, Strategic, M&A, Public sale, Unknown).
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": "May 2026",
          "round": "M&A",
          "raised": "600000000",
          "investors": [
            "Payward"
          ],
          "categories": [
            "DeFi",
            "Payment",
            "Stablecoin"
          ],
          "project_name": "Reap",
          "project_slug": "reap"
        }
      ]
    },
    "status": "success"
  }
}

About the crypto-fundraising.info 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.

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.

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,000250 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.