---
title: "Get space properties in space"
method: GET
path: "/spaces/{space-id}/properties"
tags: ["Space Properties"]
---

# Get space properties in space

`GET /spaces/{space-id}/properties`

Returns all properties for the given space. Space properties are a key-value storage associated with a space.
The limit parameter specifies the maximum number of results returned in a single response. Use the `link` response header
to paginate through additional results.

**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:
Permission to access the Confluence site ('Can use' global permission) and 'View' permission for the space.

## Path parameters

- `space-id` integer, required

## Query parameters

- `key` string
- `cursor` string
- `limit` integer

## Response `200`

Returned if the requested space properties are returned. `results` may be empty if no results were found.

- object
  - `results` SpaceProperty[]
    - `id` string — ID of the space property.
    - `key` string — Key of the space property.
    - `value` unknown
    - `createdAt` string, date-time — RFC3339 compliant date time at which the property was created.
    - `createdBy` string — Atlassian account ID of the user that created the space property.
    - `version` object
      - `createdAt` string, date-time — RFC3339 compliant date time at which the property's current version was created.
      - `createdBy` string — Atlassian account ID of the user that created the space property's current version.
      - `message` string — Message associated with the current version.
      - `number` integer — The space property's current version number.
  - `_links` MultiEntityLinks
    - `next` string — Used for pagination. Contains the relative URL for the next set of results, using a cursor query parameter. This property will not be present if there is no additional data available.
    - `base` string — Base url of the Confluence site.

## Other responses

- `400` — Returned if an invalid request is provided.
- `401` — Returned if the authentication credentials are incorrect or missing from the request.
- `404` — Returned if the calling user does not have permission to view the specified space or the space was not found.

---

[API](https://skmtc.net/atlassian/apis/the-confluence-cloud-rest-api-v2.md) · [All operations](https://skmtc.net/atlassian/apis/the-confluence-cloud-rest-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atlassian/the-confluence-cloud-rest-api-v2/revisions/451377c5a598/schema)
