---
title: "List all news items"
method: GET
path: "/news/news_items"
tags: ["News"]
---

# List all news items

`GET /news/news_items`

You can fetch a list of all news items

## Headers

- `Intercom-Version` '1.0' | '1.1' | '1.2' | '1.3' | '1.4' | '2.0' | '2.1' | '2.2' | '2.3' | '2.4' | '2.5' | '2.6' | '2.7' | '2.8' | '2.9' | '2.10' | '2.11' | '2.12' | '2.13' | '2.14' — Intercom API version.</br>By default, it's equal to the version set in the app package.

## Response `200`

successful

- PaginatedResponse — Paginated Response
  - `type` 'list' | 'conversation.list' — The type of object
  - `pages` CursorPages, nullable — Cursor-based pagination is a technique used in the Intercom API to navigate through large amounts of data. A "cursor" or pointer is used to keep track of the current position in the result set, allowing the API to return the data in small chunks or "pages" as needed.
    - `type` 'pages' — the type of object `pages`.
    - `page` integer — The current page
    - `next` StartingAfterPaging, nullable
      - `per_page` integer — The number of results to fetch per page.
      - `starting_after` string, nullable — The cursor to use in the next request to get the next page of results.
    - `per_page` integer — Number of results per page
    - `total_pages` integer — Total number of pages
  - `total_count` integer — A count of the total number of objects.
  - `data` union[] — An array of Objects
    - union
      - NewsItem — A News Item is a content type in Intercom enabling you to announce product updates, company news, promotions, events and more with your customers.
        - `type` 'news-item' — The type of object.
        - `id` string — The unique identifier for the news item which is given by Intercom.
        - `workspace_id` string — The id of the workspace which the news item belongs to.
        - `title` string — The title of the news item.
        - `body` string — The news item body, which may contain HTML.
        - `sender_id` integer — The id of the sender of the news item. Must be a teammate on the workspace.
        - `state` 'draft' | 'live' — News items will not be visible to your users in the assigned newsfeeds until they are set live.
        - `newsfeed_assignments` NewsfeedAssignment[] — A list of newsfeed_assignments to assign to the specified newsfeed.
          - `newsfeed_id` integer — The unique identifier for the newsfeed which is given by Intercom. Publish dates cannot be in the future, to schedule news items use the dedicated feature in app (see this article).
          - `published_at` integer — Publish date of the news item on the newsfeed, use this field if you want to set a publish date in the past (e.g. when importing existing news items). On write, this field will be ignored if the news item state is "draft".
        - `labels` string[] — Label names displayed to users to categorize the news item.
        - `cover_image_url` string, uri, nullable — URL of the image used as cover. Must have .jpg or .png extension.
        - `reactions` string[] — Ordered list of emoji reactions to the news item. When empty, reactions are disabled.
        - `deliver_silently` boolean — When set to true, the news item will appear in the messenger newsfeed without showing a notification badge.
        - `created_at` integer — Timestamp for when the news item was created.
        - `updated_at` integer — Timestamp for when the news item was last updated.
      - Newsfeed — A newsfeed is a collection of news items, targeted to a specific audience. Newsfeeds currently cannot be edited through the API, please refer to [this article](https://www.intercom.com/help/en/articles/6362267-getting-started-with-news) to set up your newsfeeds in Intercom.
        - `id` string — The unique identifier for the newsfeed which is given by Intercom.
        - `type` 'newsfeed' — The type of object.
        - `name` string — The name of the newsfeed. This name will never be visible to your users.
        - `created_at` integer — Timestamp for when the newsfeed was created.
        - `updated_at` integer — Timestamp for when the newsfeed was last updated.

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/intercom/apis/intercom-api.md) · [All operations](https://skmtc.net/intercom/apis/intercom-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/intercom/intercom-api/revisions/9517e80f2642/schema)
