---
title: The Links Object
description: The links object contains several link objects.
url: https://storyblok.com/docs/api/content-delivery/v2/links/the-links-object
---

# The Links Object

The links object contains [link objects](/docs/api/content-delivery/v2/links/the-link-object).

## Properties

-   `links` (object)
    
    An object of [link objects](/docs/api/content-delivery/v2/links/the-link-object) (each key constitutes a story or folder UUID)
    

Example Object

```json
{
  "links": {
    "c337e7a3-3899-4abc-86bb-732592e3c3a4": {
      "id": 460950252,
      "uuid": "c337e7a3-3899-4abc-86bb-732592e3c3a4",
      "slug": "website-a",
      "path": null,
      "parent_id": null,
      "name": "Website A",
      "is_folder": true,
      "published": false,
      "is_startpage": false,
      "position": 0,
      "real_path": "/website-a"
    },
    "3ce5d163-3bb4-41ef-9e1a-709d7c4848ff": {
      "id": 460947950,
      "uuid": "3ce5d163-3bb4-41ef-9e1a-709d7c4848ff",
      "slug": "website-a/home",
      "path": "the-real-path",
      "parent_id": 460950252,
      "name": "Home",
      "is_folder": false,
      "published": true,
      "is_startpage": false,
      "position": 10,
      "real_path": "/the-real-path"
    },
    "7ad8af26-9551-493c-bf9d-e5aace43d94c": {
      "id": 461119531,
      "uuid": "7ad8af26-9551-493c-bf9d-e5aace43d94c",
      "slug": "website-a/landing-page-a",
      "path": null,
      "parent_id": 460950252,
      "name": "Landing Page A",
      "is_folder": false,
      "published": true,
      "is_startpage": false,
      "position": 10,
      "real_path": "/website-a/landing-page-a"
    }
  }
}
```

## Pagination

-   [Previous: The Link Object](/docs/api/content-delivery/v2/links/the-link-object)
-   [Next: Introduction](/docs/api/content-delivery/v2/filter-queries)
