---
title: Retrieve a Single Story
description: Learn how to retrieve a single story using Storyblok's GraphQL API.
url: https://storyblok.com/docs/api/graphql/examples/retrieve-a-single-story
---

# Retrieve a Single Story

Use the [Pascal-cased version](/docs/api/graphql/getting-started/field-generation) of a content type name and provide an `id` as filter attribute. The id can be the `id`, `uuid`, or `full_slug` of the story.

```graphql
query {
  PageItem(id: "home") {
    name
    content {
       _uid
       component
    }
  }
}
```

## Pagination

-   [Previous: GraphQL Playground](/docs/api/graphql/getting-started/graphql-playground)
-   [Next: Retrieve Multiple Stories](/docs/api/graphql/examples/retrieve-multiple-stories)
