> 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/operating-data/website-traffic.md).

# Website Traffic

### Fields

| Field  | Type   | Description                                  |
| ------ | ------ | -------------------------------------------- |
| date   | String | Date of web traffic                          |
| visits | Float  | Total number of website visits for one month |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        websiteTraffic {
            companyUrl
            websiteTrafficHistory { 
                date
                visits
            }
        }
    }
}
# variables
{ "domain": "meta.com" }
```
