Google Nest Smart Device Management Devices API

Manage and control Nest devices

Operations 3

GET /enterprises/{enterpriseId}/devices Google Nest Smart Device Management List Devices #
GET /enterprises/{enterpriseId}/devices/{deviceId} Google Nest Smart Device Management Get Device #
POST /enterprises/{enterpriseId}/devices/{deviceId}:executeCommand Google Nest Smart Device Management Execute Device Command #

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-devices-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-devices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Nest Smart Device Management Devices 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: Devices
  description: Manage and control Nest devices
paths:
  /enterprises/{enterpriseId}/devices:
    get:
      operationId: listDevices
      summary: Google Nest Smart Device Management List Devices
      description: Lists all authorized devices for the enterprise.
      tags:
      - Devices
      parameters:
      - name: enterpriseId
        in: path
        required: true
        description: The enterprise (project) ID.
        schema:
          type: string
      responses:
        '200':
          description: Successful response with device list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeviceListResponse'
  /enterprises/{enterpriseId}/devices/{deviceId}:
    get:
      operationId: getDevice
      summary: Google Nest Smart Device Management Get Device
      description: Retrieves a specific device and its traits.
      tags:
      - Devices
      parameters:
      - name: enterpriseId
        in: path
        required: true
        schema:
          type: string
      - name: deviceId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response with device details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Device'
  /enterprises/{enterpriseId}/devices/{deviceId}:executeCommand:
    post:
      operationId: executeDeviceCommand
      summary: Google Nest Smart Device Management Execute Device Command
      description: Executes a command on a device to modify its state.
      tags:
      - Devices
      parameters:
      - name: enterpriseId
        in: path
        required: true
        schema:
          type: string
      - name: deviceId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExecuteCommandRequest'
      responses:
        '200':
          description: Command executed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExecuteCommandResponse'
components:
  schemas:
    Device:
      type: object
      properties:
        name:
          type: string
          description: Resource name of the device.
        type:
          type: string
          description: Device type (e.g., sdm.devices.types.THERMOSTAT).
        traits:
          type: object
          additionalProperties: true
          description: Map of trait names to their current values.
        parentRelations:
          type: array
          items:
            $ref: '#/components/schemas/ParentRelation'
    ParentRelation:
      type: object
      properties:
        parent:
          type: string
          description: Resource name of the parent (structure or room).
        displayName:
          type: string
          description: Display name of the parent.
    ExecuteCommandRequest:
      type: object
      required:
      - command
      properties:
        command:
          type: string
          description: The command to execute (e.g., sdm.devices.commands.ThermostatMode.SetMode).
        params:
          type: object
          additionalProperties: true
          description: Parameters for the command.
    DeviceListResponse:
      type: object
      properties:
        devices:
          type: array
          items:
            $ref: '#/components/schemas/Device'
    ExecuteCommandResponse:
      type: object
      properties:
        results:
          type: object
          additionalProperties: true
          description: Command execution results.
externalDocs:
  description: Smart Device Management API Documentation
  url: https://developers.google.com/nest/device-access/api