---
title: "Get knowledge base article with content in default locale"
method: GET
path: "/knowledge_base_articles/{article_id}/content"
tags: ["Knowledge Base Articles"]
---

# Get knowledge base article with content in default locale

`GET /knowledge_base_articles/{article_id}/content`

Fetches a knowledge base article with content in the default locale.

Required scope: `knowledge_bases:read`

## Path parameters

- `article_id` string, required

## Response `200`

A knowledge base article with content

- KnowledgeBaseArticleResponse
  - `_links` object, required
    - `self` string — Link to resource
    - `related` object
      - `knowledge_base` string — Link to the article's knowledge base
      - `category` string — Link to the article's category
      - `last_editor` string — Link to the article's last editor
  - `id` string, required — Unique identifier of the knowledge base article
  - `slug` string, required — URL slug of the article. Construct the full URL using the template of protocol/knowledge base domain/locale/slug, such as https://yourDomain.com/en/articles/5
  - `name` string, required — Name of the article
  - `status` string, required — Status of the article
  - `keywords` string[], required — Article keywords
  - `content` string, required — Article HTML content
  - `locale` string, required — Locale of the article
  - `attachments` Attachment[], required — List of files attached to the article
    - `id` string, required — The unique identifier of the attachment.
    - `filename` string, required — Name of the attached file
    - `url` string, required — URL to download the attached file
    - `content_type` string, required — Content type of the attached file in [MIME format](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types). Note that some attachments types may not be supported.
    - `size` integer, required — Size (in byte) of the attached file
    - `metadata` object, required — Attachment metadata
      - `is_inline` boolean — Whether or not the attachment is part of the message body
      - `cid` string — Unique identifier used to link an attachment to where it is used in the message body
  - `last_edited_at` number — Timestamp when the article was last edited
  - `created_at` number — Timestamp when the article was created
  - `updated_at` number — Timestamp when the article was updated

---

[API](https://skmtc.dev/frontapp/apis/core-api.md) · [All operations](https://skmtc.dev/frontapp/apis/core-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/frontapp/core-api/revisions/76d1eaa2d0eb/schema)
