> For the complete documentation index, see [llms.txt](https://docs.craft.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.craft.co/company-data-api/data-points/financials/filing.md).

# Filing

### Fields

| Field    | Type                                                      | Description                            |
| -------- | --------------------------------------------------------- | -------------------------------------- |
| craftUrl | String                                                    | URL for report on the Craft side       |
| period   | [Period](/company-data-api/graphql-objects/untitled-3.md) | Period - Quarterly or Annual           |
| secUrl   | String                                                    | URL for the filing in the SEC database |

### Query Example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        filings {
            craftUrl
            period { 
                periodType
                endDate
            }
            secUrl
        }
    }
}

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