---
title: Internationalization for Stories
description: Discover Storyblok's documentation with comprehensive developer guides, user manuals, API references, and examples to help you get the most out of the headless CMS platform.
url: https://storyblok.com/docs/api/management/stories/internationalization-for-stories
---

# Internationalization for Stories

If you use our field-level translation functionality, you will also receive the translated content while fetching the story. Translated content can be viewed just next to the default content. Translated fields will have appended `__i18n__` to the field name followed by the language code.

Similarly, for creating or updating content, you can provide the values for the translations/languages within the same content object by appending `__i18n__` followed by the language code. Make sure to have the component field option`translatable` to `true`.

Get a [full list of our languages codes](https://gist.github.com/DominikAngerer/f685f2c988171faef3fb6c2ffff4c78c) on Github.

Response

```json
{
  "story": {
    "content": {
      "_uid": "61a81f04-fb28-41f1-897a-8614df7f4143",
      "body": [
        {
          "_uid": "9d3ade8f-5a40-43df-8ab0-7b148f036567",
          "headline": "This is awesome!",
          "headline__i18n__de": "Das ist toll!",
          "component": "teaser"
        }
      ]
    }
  }
}
```

## Pagination

-   [Previous: Delete a Story](/docs/api/management/stories/delete-a-story)
-   [Next: Translate a Story by AI](/docs/api/management/stories/ai-translate)
