Webhooks
Filters
Narrow what each webhook endpoint receives per event kind.
Each endpoint can narrow what it receives per event kind, for example only Series A and B rounds above a minimum size:
{
"funding": {
"rounds": ["series-a", "series-b"],
"minAmountUsdCents": 500000000,
"countries": ["US", "GB"],
"industries": ["Software Development"]
},
"acquisition": { "minDealAmountUsdCents": 10000000000, "countries": ["US"] },
"exec_move": { "seniorities": ["c_level"], "moveTypes": ["appointment"] }
}All clauses within a kind are combined with AND. Omitting a filter delivers every signal of that kind.
Available filters
| Kind | Filters |
|---|---|
funding | rounds[], minAmountUsdCents, countries[], industries[] |
acquisition | minDealAmountUsdCents, countries[] |
exec_move | seniorities[], moveTypes[], countries[] |
Country codes are ISO 3166-1 alpha-2 (US, GB). Rounds, seniorities, and move types use the same canonical values as the API reference.