> ## Documentation Index
> Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch Space

> Get a single space by its UUID

Fetches a space by UUID. Returns full space details including membership permissions for the authenticated user, parent space, and child space previews.

## Path Parameters

<ParamField path="spaceId" type="string" required>
  UUID of the space.
</ParamField>

## Query Parameters

<ParamField query="include" type="string">
  Optional. Pass `"files"` to include avatar and banner file objects.
</ParamField>

## Response

Returns a [SpaceDetailed](/data-models/space) object including `memberPermissions`, `parentSpace`, and `childSpaces`.

## Error Responses

<AccordionGroup>
  <Accordion title="Not Found — 404">
    ```json theme={null}
    { "error": "Space not found.", "code": "space/not-found" }
    ```
  </Accordion>
</AccordionGroup>

See also: [useFetchSpace](/hooks/spaces/use-fetch-space)
