For the complete documentation index, see llms.txt. This page is also available as Markdown.

Private Valuation

Fields

Field

Type

Description

date

String

ISO 8601 formatted date

fundingRound

Funding round associated with the valuation

postMoneyValuation

Post-Money Valuation

preMoneyValuation

Pre-Money Valuation

source

URL of Source

valuationStepUp

Float

Increase in Valuation since Last Funding

Query example

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        privateValuations {
            comments
            date
            fundingRound {
                date
            }
            postMoneyValuation {
                amount
                currency
            }
            preMoneyValuation  {
                amount
                currency
            }
            source {
                url
            }
            valuationStepUp
        }
    }
}

# variables
{ "domain": "stripe.com" }

Last updated

Was this helpful?