List all articles

Example Request & Response (Single Language Help Center)

  1. curl
  2. http
$ curl https://api.intercom.io/articles \\\n-X GET \\\n-H 'Authorization:Bearer <Your access token>' \\\n-H 'Accept:application/json'\n-H 'Content-Type: application/json' -d

You can fetch a list of all articles by making a GET request to https://api.intercom.io/articles.

Response

KeyTypeDescription
typeStringThe type of object - list.
pagesObjectA Pages object with the information needed to paginate through Articles.
total_countIntegerA count of the total number of articles.
dataArrayAn array of Article Objects.
How are the articles sorted and ordered?

Articles will be returned in descending order on the updated_at attribute. This means if you need to iterate through results then we'll show the most recently updated articles first.