Funding Rounds
Fields
Field
Type
Description
date
String
ISO 8601 formatted date of funding
stage
String
Stage of funding this round represented
Query example
# query
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
fundingRounds {
amount {
currencyIsoCode
value
}
date
stage
privateValuation {
date
postMoneyValuation {
value
currencyIsoCode
}
source {
url
label
}
valuationStepUp
}
}
}
}
# variables
{ "domain": "stripe.com" }
Last updated
Was this helpful?