---
title: The Space Object
description: Reference for the space object structure in Storyblok's Content Delivery API, including space properties and configuration details.
url: https://storyblok.com/docs/api/content-delivery/v2/spaces/the-space-object
---

# The Space Object

The space object provides information such as the space ID, the space name, the list of languages available and configured in the space, the cache version parameter, and the domain related to the space.

## Properties

-   `id` (number)
    
    Space ID
    
-   `name` (string)
    
    Space name
    
-   `domain` (string)
    
    Domain associated with the space (configured under **Visual Editor** → **Location**)
    
-   `version` (string)
    
    Cached version Unix timestamp (see [Cache Invalidation](/docs/api/content-delivery/v2/getting-started/cache-invalidation))
    
-   `language_codes` (array)
    
    Array of language codes configured in the space
    

Example Object

```json
{
  "space": {
    "id": 123456,
    "name": "Storyblok",
    "domain": "https://www.storyblok.com/",
    "version": 1544117388,
    "language_codes": ["de", "es"]
  }
}
```

## Pagination

-   [Previous: Retrieve Current Space](/docs/api/content-delivery/v2/spaces/retrieve-current-space)
-   [Next: Retrieve a Single Datasource](/docs/api/content-delivery/v2/datasources/retrieve-a-single-datasource)
