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

# Get robot by ID

> Get detailed information about a specific robot including its active tote



## OpenAPI

````yaml api-reference/v1/openapi.yaml get /v1/equipment/robots/{id}
openapi: 3.1.0
info:
  title: Goods API
  version: 1.0.0
  description: >-
    API for Goods grocery operations - scanner app, admin dashboard, and
    customer features
  contact:
    name: Goods Team
    url: https://goods.app
servers:
  - url: http://localhost:3000
    description: Local development
  - url: https://dev.api.switchyard.run
    description: Development
  - url: https://api.switchyard.run
    description: Production
security: []
tags:
  - name: v1
    description: API v1 - unified domain-based endpoints
  - name: Scanner
    description: Scanner app endpoints for drivers and pickers
  - name: Sweeps
    description: Sweep management - retail store pickup operations
  - name: RFC Picks
    description: Ready-for-checkout picking operations
  - name: Inventory
    description: Inventory management and barcode lookup
  - name: Admin
    description: Admin dashboard endpoints
  - name: Orders
    description: Order management
  - name: Products
    description: Product catalog management
  - name: Notifications
    description: Push, email, SMS, and Slack notification management
paths:
  /v1/equipment/robots/{id}:
    get:
      tags:
        - Equipment
      summary: Get robot by ID
      description: >-
        Get detailed information about a specific robot including its active
        tote
      parameters:
        - schema:
            type: string
            description: 18-digit taxonomy ID
            example: '011000001000020053'
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Robot details
          content:
            application/json:
              schema:
                type: object
                properties:
                  robot:
                    type: object
                    properties:
                      id:
                        type: string
                        description: 18-digit taxonomy ID
                        example: '011000001000020053'
                      display_id:
                        type: string
                        example: R-0001
                      label:
                        type: string
                        example: Robot R-0001
                      name:
                        type: string
                        example: Delivery Bot 1
                      status:
                        type: string
                        enum:
                          - idle
                          - delivering
                          - charging
                          - error
                      is_active:
                        type: boolean
                      active_tote_id:
                        type: string
                        nullable: true
                      active_tote:
                        type: object
                        nullable: true
                        properties:
                          id:
                            type: string
                            description: 18-digit taxonomy ID
                            example: '011000001000020053'
                          display_id:
                            type: string
                            example: T-0001
                          status:
                            type: string
                          item_count:
                            type: number
                          order_id:
                            type: string
                            nullable: true
                            format: uuid
                          order_display_id:
                            type: number
                            nullable: true
                        required:
                          - id
                          - display_id
                          - status
                          - item_count
                          - order_id
                          - order_display_id
                      totes:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: 18-digit taxonomy ID
                              example: '011000001000020053'
                            display_id:
                              type: string
                              example: T-0001
                            status:
                              type: string
                            item_count:
                              type: number
                            order_id:
                              type: string
                              nullable: true
                              format: uuid
                            order_display_id:
                              type: number
                              nullable: true
                          required:
                            - id
                            - display_id
                            - status
                            - item_count
                            - order_id
                            - order_display_id
                        description: Array of all totes assigned to this robot
                      tote_count:
                        type: number
                        description: Number of totes assigned to this robot
                      created_at:
                        type: string
                        format: date-time
                      updated_at:
                        type: string
                        format: date-time
                    required:
                      - id
                      - display_id
                      - label
                      - name
                      - status
                      - is_active
                      - active_tote_id
                      - active_tote
                      - totes
                      - tote_count
                      - created_at
                      - updated_at
                required:
                  - robot
        '404':
          description: Robot not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Error message
                    example: Not found
                required:
                  - error

````