> 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/untitled-1.md).

# News Articles

This returns news articles and company blog posts.

### Fields

| Field       | Type   | Description                           |
| ----------- | ------ | ------------------------------------- |
| headline    | String | Article title                         |
| publishedAt | String | ISO 8601 formatted publication *time* |
| source      | String | Source label                          |
| summary     | String | Summary of the article                |
| url         | String | Original article URL                  |

### Arguments

`first` – Number of news/blogs to retrieve, should not exceed 100. Default is `10`.

`offset` – Offset in the list. Default is `0`.

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        news(first: 10, offset: 0) {
            headline
            publishedAt
            source
            summary
            url
        }
        
        blogs(first: 10, offset: 0) {
            headline
            publishedAt
            source
            summary
            url
        }
    }
}


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