Funding Round
Cost: 1
credit / request. (Extra charges might be incurred if premium optional parameters are used. Please read the description of the parameters that you intend to use)
Get structured data of a Company's Funding Rounds
POST/api/v1/funding-activities
Funding Round Endpoint
This endpoint allows you to get structured data of a Company's Funding Rounds.
Required attributes
- Name
url
- Type
- string
- Description
Company domain.
Request
POST
/v1/funding-activities curl --location --request POST 'https://api.datamagnet.co/api/v1/funding-activities' \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json' \
--data-raw '{
"url": "openai.com"
}'
Response
{
"message": {
"domain": "openai.com",
"funding_activities": [
{
"currency": "USD",
"date": "2023-01-23",
"investment_type": "corporate_round",
"investment_value": 10000000000,
"investment_value_usd": 10000000000,
"lead_investors": []
},
{
"currency": "USD",
"date": "2023-04-28",
"investment_type": "secondary_market",
"investment_value": 300000000,
"investment_value_usd": 300000000,
"lead_investors": []
},
{
"currency": null,
"date": "2023-12-14",
"investment_type": "secondary_market",
"investment_value": 0,
"investment_value_usd": 0,
"lead_investors": []
},
{
"currency": "USD",
"date": "2019-07-23",
"investment_type": "secondary_market",
"investment_value": 1000000000,
"investment_value_usd": 1000000000,
"lead_investors": []
},
{
"currency": null,
"date": "2023-08-14",
"investment_type": "secondary_market",
"investment_value": 0,
"investment_value_usd": 0,
"lead_investors": []
},
{
"currency": null,
"date": "2019-03-11",
"investment_type": "seed",
"investment_value": 0,
"investment_value_usd": 0,
"lead_investors": []
},
{
"currency": "USD",
"date": "2016-08-22",
"investment_type": "pre_seed",
"investment_value": 120000,
"investment_value_usd": 120000,
"lead_investors": []
},
{
"currency": null,
"date": "2021-01-01",
"investment_type": "secondary_market",
"investment_value": 0,
"investment_value_usd": 0,
"lead_investors": []
}
],
"linkedin_url": "https://www.linkedin.com/company/openai"
}
}
The Funding Round Model
It contains all the attributes of a company's funding round.
Properties
- Name
domain
- Type
- string
- Description
Domain of the company.
- Name
linkedin_url
- Type
- string
- Description
Company's LinkedIn URL. If present, could be used with Company Profile Endpoint for more info.
- Name
currency
- Type
- string
- Description
Currency in which the investment was raised.
- Name
date
- Type
- string
- Description
Date on which investment was announced.
- Name
investment_type
- Type
- list
- Description
Investment type.
- Name
investment_value
- Type
- string
- Description
Investment value.
- Name
investment_value_usd
- Type
- string
- Description
Investment value in USD.
- Name
lead_investors
- Type
- string
- Description
Name of all the leading investors.