> For the complete documentation index, see [llms.txt](https://developers.innerspace.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.innerspace.io/api-reference-v2/sites.md).

# sites

Refresh Interval: hourly.

A site represents a contiguous area on a floor that is covered by the InnerSpace solution.  Most often, an entire floor is covered, thus the area of a site is no different than a floor.  However, some floors are very large, thus only certain areas of the floor are covered - in this case, a floor may have multiple 'sites'.

Retrieve a list of sites (typically a floor) available in a building.

```graphql
// query
query MyQuery {
  SITE(where: {BUILDING_ID: {_eq: 71}}) {
    ALTITUDE
    BUILDING_ID
    FLOOR_ID
    ID
    LATITUDE
    LONGITUDE
    SITE_CODE
    TIME_ZONE
  }
}

```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.innerspace.io/api-reference-v2/sites.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
