# 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" }
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.craft.co/company-data-api/data-points/operating-data/untitled-1.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
