Intellizence API Docs
  • Intellizence REST API Documentation
  • Company News Signal API
    • List Companies
    • Add Group
    • Delete Group
    • List Of Tracked Companies
    • Add Company
    • Remove Company
    • Bulk Add Companies
    • Bulk Remove Companies
    • Recommend Company
    • Check Company Recommendation Status
    • List Triggers
    • Add Trigger
    • Remove Trigger
    • Bulk Add Triggers
    • Bulk Remove Triggers
    • Search Signals
    • Push News
    • Search Signals Based On Company ID
  • COMPANY API
    • Company Data
  • Dataset API
    • Merger & Acquisition Dataset API
    • Funding Dataset API
    • Layoff Dataset API
    • Business Expansion Dataset API
    • CXO Appointments and Changes Dataset API
    • Data & Security Breaches Dataset API
    • Relocation Dataset API
  • Dataset API - V1.0
    • Merger & Acquisition Dataset API
    • Funding Dataset API
    • Layoff Dataset API
    • Business Expansion Dataset API
    • Major Hiring Dataset API
    • CXO Appointments and Changes Dataset API
    • Data & Security Breaches Dataset API
    • IPO Dataset API
    • Relocation Dataset API
  • API Parameter Values
    • Industries
    • Merger & Acquisition Dataset
    • Funding Dataset
    • Layoff Dataset
    • Business Expansion Dataset
    • CXO Appointments and Changes Dataset
  • Topic Signals
    • List of Tracked Topics
    • List of Tracked Triggers
    • Search Topic Signals
Powered by GitBook
On this page
  1. Dataset API

Funding Dataset API

PreviousMerger & Acquisition Dataset APINextLayoff Dataset API

Last updated 6 days ago

Submit Intellizence Startup Funding Dataset request

post

This API endpoint allows users to access real-time and historical startup funding deals data. Users can search data using various parameters- dateType,startDate,endDate,date,companyDomain,companyName,companyIndustry,companyLocation,companyType,companyTicker,fundingRound,dealAmount, valuation, investor and currency. Users can limit the number of records returned using the limit parameter. All the parameters are optional. The API key has to be passed in HTTP header with the name x-api-key. NOTE:The startup funding data is typically available for VC funded private companies. The funding data is not available for public companies, non VC funded private companies, government departments, hospitals,universities and other organizations.

Header parameters
x-api-keystringRequired

Intellizence API key for authenticating the request.

Body
dateTypestring · enumOptional

Choose the date type used to filter records.The default value is 'ANNOUNCED'. To get the daily update of records created or modified, 'LAST-MODIFIED' is recommended.

Example: ANNOUNCEDPossible values:
startDatestring · dateOptional

The start date (YYYY-MM-DD) from which funding data is needed. The Intellizence Startup Funding Dataset contains data beginning from 2020-01-01.

Example: 2025-03-03
endDatestring · dateOptional

The end date (YYYY-MM-DD) up to which funding data is needed.

Example: 2025-03-03
datestring · dateOptional

Exact date (YYYY-MM-DD) for which the funding data is needed.

Example: 2025-03-03
companyNamestringOptional

The name(s) of the company for which the funding data is needed. Partial name matches are supported. Multiple values can be provided either as a comma-separated string or as an array.

Example: Anthropic
companyDomainstringOptional

The website domain(s) of the company for which the funding data is needed. Partial website domain matches are supported. Multiple values can be provided either as a comma-separated string or as an array.

Example: www.anthropic.com
companyIndustrystring · enumOptional

The industry or industries of companies for which funding data is needed. The industries are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided as an array.

Example: technologyPossible values:
companyLocationstringOptional

The location of the company headquarters for which funding data is needed. The location can be city or state/province or country. Multiple values can be provided either as a comma-separated string or as an array.

Example: San Francisco,California,United States of America
companyTypestring · enumOptional

The type of company or organization for which funding data is needed. The company types are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided either as a comma-separated string or as an array.

Example: PrivatePossible values:
companyTickerstringOptional

Company Ticker if it's a public company.

Example: []
fundingRoundstring · enumOptional

The funding round for which data is needed. Multiple values can be provided either as a comma-separated string or as an array.

Example: Series EPossible values:
dealAmountnumber · floatOptional

Filter the records by funding deal amount. Pass the currency whenver dealAmount is used. If currency is not provided along with dealAmount, all the records that matches the deal amount of any currency will be returned. The allowed operators are >, >=, <, <=,=,!=, (MinimumValue),(Maximum Value). Examples: >1000000, >=1000000, <1000000, <=1000000,=1000000,!=1000000, (1000000,400000)

Pattern: ^(>|>=|<|<=|=|!=)?\d+(,\d+)?$
valuationnumber · floatOptional

Filter records based on company valuation. Valuation data is not available for all records and is typically provided only for companies with valuations in the billion-dollar range. The allowed operators are >, >=, <, <=,=,!=, (MinimumValue),(Maximum Value). Examples: >1000000, >=1000000, <1000000, <=1000000,=1000000,!=1000000, 1000000,400000

Pattern: ^(>|>=|<|<=|=|!=)?\d+(,\d+)?$
investorstringOptional

Name of the investor(s) who invested in this round. Partial name matches are supported. Multiple values can be provided either as a comma-separated string or as an array.

Example: Lightspeed Venture Partners
currencystring · enumOptional

The currency of the deal transaction.

Example: USDPossible values:
limitintegerOptional

The maximum number of records to be returned.

Example: 1
Responses
200
Successful response, returns the Intellizence Startup Funding dataset record(s)
application/json
400
Bad request, possibly missing required parameters, invalid data, invalid or missing API key
404
Available credits are 0
405
Insufficient credits
406
Invalid deal amount filter format
407
Invalid valuation amount filter format
500
Internal server error
post
POST /api/v2/dataset/fundraising HTTP/1.1
Host: api.intellizence.com
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 427

{
  "dateType": "ANNOUNCED",
  "startDate": "2025-03-03",
  "endDate": "2025-03-03",
  "date": "2025-03-03",
  "companyName": "Anthropic",
  "companyDomain": "www.anthropic.com",
  "companyIndustry": "technology",
  "companyLocation": "San Francisco,California,United States of America",
  "companyType": "Private",
  "fundingRound": "Series E",
  "dealAmount": "=3500000000",
  "valuation": "=61500000000",
  "investor": "Lightspeed Venture Partners",
  "currency": "USD",
  "limit": 1
}
{
  "id": "67c858abf7fd1a188e2b1ab3",
  "announcedDate": "2025-03-03",
  "company": {
    "name": "Anthropic",
    "domain": "www.anthropic.com",
    "industries": [
      "technology"
    ],
    "location": "San Francisco,California,United States of America",
    "ticker": [],
    "type": "Private"
  },
  "fundingRound": "Series E",
  "investors": "Lightspeed Venture Partners, Salesforce Ventures, Cisco Investments, Fidelity Management & Research Co., General Catalyst, D1 Capital Partners, Jane Street",
  "leadInvestors": "Lightspeed Venture Partners",
  "dealAmount": 1,
  "valuation": 1,
  "currency": "USD",
  "lastModified": "2025-03-06",
  "title": "AI Startup Anthropic Valued at $61.5B After Latest Funding Round",
  "url": "https://www.investopedia.com/ai-startup-anthropic-valued-at-usd61-5b-after-latest-funding-round-11689703"
}