Fundraising alerts
Fundraising alerts are triggered as soon as a company officially announces a fundraising round.
On the json payload, the
type
property allows you to identify the type of alert that has been triggered:{
"event_id": 458325,
"timestamp": "2020-04-23T12:25:32.209Z",
"type": "fundraising", // <<<< This is where you can identify the alert type
"alert_name": "Fundraising in Europe",
"event_verbose": "Acme Co. just raised $15,000,000 in a Series A round",
"domain": "acme.co",
...
Both job_added and job_removed alert types send the same 2 event properties under the "event_properties" key:
key | type | options |
amount | number | Number |
currency | string | $, €, ... |
round | string | Seed, Series A, Series B, Series C, Series D,
Series E,
Series F, funding (for unknown rounds) |
"event_properties": {
"amount": 15000000,
"currency": "$",
"round": "funding"
}
{
"event_id": 227,
"timestamp": "2020-10-15T00:00:00.000Z",
"type": "fundraising",
"alert_name": "Fundraising in Europe",
"event_verbose": "Acme Co just raised $15,000,000 in a funding round",
"domain": "acme.co",
"event_properties": {
"amount": 15000000,
"currency": "$",
"round": "funding"
},
"company_properties": {
"company_name": "Acme Co",
"alexa_rank": null,
"country": "Spain",
"location": "Madrid, Madrid, Spain",
"industry": "Hospital & Health Care",
"employees_range": "11-50",
"social_linkedin_url": "linkedin.com/company/acmeco",
"social_facebook_url": null,
"social_twitter_url": "/acmeco",
"year_founded": 2014
}
}
Last modified 2yr ago