For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • NVIDIA Switch Infrastructure
    • I want to...
  • Quick Start
    • Start Here
    • Getting Started with Config Manager
    • TUI Wizard Reference
    • Configuration Samples
    • Interfaces
    • Local Development Quick Start
    • First Run Tour
  • Config Manager Overview
    • Config Manager Concepts
    • Getting Started with Nautobot
  • User Guides
    • New Site Bringup
    • Workflow Lifecycle
  • Deployment
    • Hosting Options
    • Network Topology Requirements
    • Firewall Ports
    • Airgapped Deployment
    • Troubleshooting
  • Services
      • Network Infrastructure Automation with Temporal
      • Temporal Deployment Process
      • Temporal CLI
      • Workflows for Day 2 Operations
      • Temporal API
        • GETHealthcheck
        • GETRBAC Config Status
        • GETCurrent User Info
          • GETGet Devices
          • GETGet Device ID by Name
          • GETGet Device Password Users
          • GETGet Secret Types for Device
          • GETGet Device Secrets
          • GETGet Diagnostics Commands
          • GETGet Locations
          • GETGet Roles
          • GETGet AIR Simulations
          • GETGet Sites
          • GETGet Statuses
          • GETGet Tenants
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogo
ServicesTemporal ServiceTemporal APIparameters

Get Diagnostics Commands

||View as Markdown|
GET
https://host.com/v1/parameter/diagnostics/commands
GET
/v1/parameter/diagnostics/commands
$curl https://host.com/v1/parameter/diagnostics/commands \
> -H "Content-Type: application/json"
1[
2 {
3 "description": "Displays detailed information about all network interfaces on the device.",
4 "name": "show interfaces"
5 },
6 {
7 "description": "Sends ICMP echo requests to test connectivity to a remote host.",
8 "name": "ping"
9 },
10 {
11 "description": "Traces the route packets take to a network host.",
12 "name": "traceroute"
13 },
14 {
15 "description": "Shows the current software version and system uptime.",
16 "name": "show version"
17 },
18 {
19 "description": "Displays the current active configuration of the device.",
20 "name": "show running-config"
21 }
22]

Return the diagnostics command catalog for the requested platform(s).

Pass one or more ?platform=<slug> query params (e.g. cumulus-linux). When no platform is given, commands from all platforms are returned. Commands that appear on multiple platforms are deduplicated by name.

Previous

Get Device Secrets

Next

Get Locations

Query parameters

platformlist of strings or nullOptional

Response

Successful Response
descriptionstring
namestring

Errors

422
Unprocessable Entity Error