LogoLogo
Ctrlk
Request an API keyBack to Craft.co
  • Introduction
  • About GraphQL
  • Authentication
  • Troubleshooting
  • Company Data API
    • Company Data API Introduction
    • Getting started
    • Query Parameters
    • Data Categories
      • Basic Company Information
      • Financials
        • Private Valuation
        • Funding Rounds
        • Income Statement
        • Cash Flow Statement
        • Balance Sheet
        • Revenue Breakdown
        • Acquisitions
        • Analyst Ratings
        • Filing
        • Stock Summary
        • Latest Z Score
        • Ratios
      • Human capital
      • Operating data
    • GraphQL Enums
    • Core data types
    • Additional data types
    • Query examples
    • Restrictions on Usage
    • Usage
  • Added Companies API
    • Newly Profiled Companies API Introduction
    • Query
  • Alerts API
    • Alerts API Introduction
    • Getting started
    • Alerts API Queries
    • Alerts API Reference
    • Query examples
    • Restrictions on Usage
Powered by GitBook
On this page
  1. Company Data API
  2. Data Categories

Financials

Fields

  • Income statements

  • Balance sheets

  • Cash flows

  • Filings

  • Analyst rating

  • Latest stock summary

  • Funding rounds

  • Stock summaries

  • Private valuations

  • Ratios

  • Latest Z Score

  • Revenue breakdown

Field

Type

Description

ev

Money

Enterprise Value

totalFunding

Money

Total funding data

Query example

PreviousTagNextPrivate Valuation

Last updated 2 years ago

Was this helpful?

  • Fields
  • Query example

Was this helpful?

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        ev {
            currency
            amount
        }
        totalFunding {
            currency
            amount
        }
        stocksSummary {
            closingDatetime
            marketcap
        }
        incomeStatements {
            period {
                periodType
                endDate
            }
            revenue
        }
    }
}

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