---
title: Fetch Content in a Specific Language
description: Learn how to Storyblok content in a specific language using the GraphQL API.
url: https://storyblok.com/docs/api/graphql/examples/fetch-content-in-a-specific-language
---

# Fetch Content in a Specific Language

To fetch multiple items in a specific language with field-level translations enabled, use the `starts_with` parameter and provide the corresponding language code as an argument. Suffix the language code with a `/*` to look for a language rather than a folder.

```graphql
query {
 PageItems(starts_with: "hi/*") {
   total
   items {
     lang
     content {
       _editable
       _uid
       body
       component
     }
   }
 }
}
```

> [!NOTE]
> In the Content Delivery API, when fetching multiple stories, you can use `language` as a query param to retrieve all translated fields. This is not supported in the GraphQL API.

When fetching a single item in a specific language, use `language` as an argument instead.

```graphql
{
 StickynoteItem(id: 573178675, language: "hi") {
   content {
     note
     component
   }
 }
}
```

## Pagination

-   [Previous: Resolve Relations](/docs/api/graphql/examples/resolve-relations)
-   [Next: Filter Queries](/docs/api/graphql/examples/filter-queries)
