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
    • 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
  • USAGE BASED APIs
    • Merger & Acquisition Dataset API
    • Funding Dataset API
  • Layoff Dataset API
Powered by GitBook
On this page
  1. USAGE BASED APIs

Funding Dataset API

PreviousMerger & Acquisition Dataset APINextLayoff Dataset API

Last updated 15 days ago

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

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

Example: ANNOUNCEDPossible values:
startDatestring · dateOptional

The start date(YYYY-MM-DD) from which funding data is needed. The data in the Intellizence Startup Funding Dataset is available starting from 2020-01-01.

Example: 2024-03-27
endDatestring · dateOptional

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

Example: 2024-03-27
datestring · dateOptional

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

Example: 2024-03-27
companyNamestringOptional

The name of the company for which the funding data is needed. Partial name matches are supported.

Example: Anthropic
companyDomainstringOptional

The website domain of the company for which the funding data is needed. Partial matches are supported.

Example: www.anthropic.com
companyIndustrystring · enumOptional

The industry of companies for which funding data is needed.

Example: technologyPossible values:
companyLocationstringOptional

The HeadQuarters location of companies for which funding data is needed. The location can be City or State/Province or Country.

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

The type of companies for which funding data is needed. The startup funding data is typically available for Private companies.

Example: PrivatePossible values:
fundingRoundstring · enumOptional

The funding round for which data is needed.

Example: Series DPossible 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

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

Filter the records by valuation amount. The allowed operators are >, >=, <, <=,=,!=, (MinimumValue),(Maximum Value). Examples: >1000000, >=1000000, <1000000, <=1000000,=1000000,!=1000000, 1000000,400000

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

Name or unique identifier of an investor. Use this field to filter fundraising rounds by a specific investor.

Example: softbank
currencystring · enumOptional

The currency of the deal transaction.

Example: USDPossible values:
limitintegerOptional

The maximum number of records to be returned.

Example: 100
Responses
200
Successful response, returns the Startup Funding dataset
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: 409

{
  "dateType": "ANNOUNCED",
  "startDate": "2024-03-27",
  "endDate": "2024-03-27",
  "date": "2024-03-27",
  "companyName": "Anthropic",
  "companyDomain": "www.anthropic.com",
  "companyIndustry": "technology",
  "companyLocation": "San Francisco,California,United States of America",
  "companyType": "Private",
  "fundingRound": "Series D",
  "dealAmount": "=2750000000",
  "valuation": "=1000000000",
  "investor": "softbank",
  "currency": "USD",
  "limit": 100
}
{
  "announcedDate": "2024-03-27",
  "company": {
    "name": "Anthropic",
    "domain": "www.anthropic.com",
    "industries": [
      "technology"
    ],
    "location": "San Francisco,California,United States of America",
    "ticker": [],
    "type": "Private"
  },
  "fundingRound": "Series D",
  "investors": "SoftBank Group Corp",
  "dealAmount": "=2750000000",
  "valuation": "=1000000000",
  "currency": "USD",
  "lastModified": "2025-03-06",
  "url": "text",
  "title": "text"
}