You can fetch the details of a single article by making a GET request to https://api.intercom.io/articles/<id>.
Intercom API version.
By default, it's equal to the version set in the app package.
- The production API serverhttps://api.intercom.io/articles/{id}
- The european API serverhttps://api.eu.intercom.io/articles/{id}
- The australian API serverhttps://api.au.intercom.io/articles/{id}
curl -i -X GET \
https://api.intercom.io/articles/123 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.9'Article found
The title of the article. For multilingual articles, this will be the title of the default language's content.
The description of the article. For multilingual articles, this will be the description of the default language's content.
The body of the article in HTML. For multilingual articles, this will be the body of the default language's content.
Whether the article is published or is a draft. For multilingual articles, this will be the state of the default language's content.
The time when the article was created. For multilingual articles, this will be the timestamp of creation of the default language's content in seconds.
The time when the article was last updated. For multilingual articles, this will be the timestamp of last update of the default language's content in seconds.
The URL of the article. For multilingual articles, this will be the URL of the default language's content.
The id of the article's parent collection or section. An article without this field stands alone.
The ids of the article's parent collections or sections. An article without this field stands alone.
[ 18, 19 ]
The type of parent, which can either be a collection or section.
The default locale of the help center. This field is only returned for multilingual help centers.
The Translated Content of an Article. The keys are the locale codes and the values are the translated content of the article.
The statistics of an article.
{ "id": "41", "type": "article", "workspace_id": "this_is_an_id43_that_should_be_at_least_4", "parent_id": 150, "parent_type": "collection", "parent_ids": [], "statistics": { "type": "article_statistics", "views": 0, "conversations": 0, "reactions": 0, "happy_reaction_percentage": 0, "neutral_reaction_percentage": 0, "sad_reaction_percentage": 0 }, "title": "This is the article title", "description": "", "body": "", "author_id": 991267264, "state": "published", "created_at": 1717021344, "updated_at": 1717021344, "url": "http://help-center.test/myapp-43/en/articles/41-this-is-the-article-title" }