Google Nest Smart Device Management Structures API

Manage structures (homes)

Operations 1

GET /enterprises/{enterpriseId}/structures Google Nest Smart Device Management List Structures #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/google-nest-structures-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

google-nest-structures-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Nest Smart Device Management Devices Structures API
  description: The Smart Device Management (SDM) API is a REST API that allows developers to manage Google Nest devices. It provides access to device traits and commands for thermostats, cameras, doorbells, and displays. The API uses a trait-based model where each device exposes traits that describe its capabilities and current state, and accepts commands to change device settings.
  version: 1.0.0
  contact:
    name: Google Nest Device Access
    url: https://developers.google.com/nest/device-access
  license:
    name: Google APIs Terms of Service
    url: https://developers.google.com/terms
servers:
- url: https://smartdevicemanagement.googleapis.com/v1
  description: Smart Device Management API v1 Server
tags:
- name: Structures
  description: Manage structures (homes)
paths:
  /enterprises/{enterpriseId}/structures:
    get:
      operationId: listStructures
      summary: Google Nest Smart Device Management List Structures
      description: Lists all authorized structures (homes) for the enterprise.
      tags:
      - Structures
      parameters:
      - name: enterpriseId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response with structure list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StructureListResponse'
components:
  schemas:
    StructureListResponse:
      type: object
      properties:
        structures:
          type: array
          items:
            $ref: '#/components/schemas/Structure'
    Structure:
      type: object
      properties:
        name:
          type: string
          description: Resource name of the structure.
        traits:
          type: object
          additionalProperties: true
          description: Map of trait names to their current values.
externalDocs:
  description: Smart Device Management API Documentation
  url: https://developers.google.com/nest/device-access/api