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

Government Spending

Fields

Field

Type

Description

amount

Award amount

countryCode

String

Government country code

newAwards

Int

Number of awards

period

Period

source

Source

Query

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        govSpending {
            amount {
                currencyIsoCode
                value
            }
            countryCode
            newAwards
            period {
                displayEndDate
            }
            source {
                label
                url
            }
        }
    }
}

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

Last updated

Was this helpful?