Chef Nodes API

The Nodes API from Chef — 3 operation(s) for nodes.

Operations 6

GET /cfgmgmt/nodes List configuration management nodes #
GET /nodes List nodes #
POST /nodes Create a node #
GET /nodes/{nodeName} Get a node #
PUT /nodes/{nodeName} Update a node #
DELETE /nodes/{nodeName} Delete a node #

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/chef-nodes-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

chef-nodes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Chef Nodes API
  version: '1.0'
  contact:
    name: Chef Software
    url: https://www.chef.io/support
  description: 'Operations tagged Nodes across 2 of this provider''s published API definitions: chef-automate-api-openapi.yml, chef-infra-server-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{automate}/api/v0
  description: Chef Automate
  variables:
    automate:
      default: automate.example.com
- url: https://{server}/organizations/{org}
  description: Chef Infra Server (per-organization)
  variables:
    server:
      default: chef.example.com
    org:
      default: example
tags:
- name: Nodes
paths:
  /cfgmgmt/nodes:
    get:
      operationId: listManagedNodes
      summary: List configuration management nodes
      tags:
      - Nodes
      responses:
        '200':
          description: Nodes list
      security:
      - apiToken: []
    servers:
    - url: https://{automate}/api/v0
      description: Chef Automate
      variables:
        automate:
          default: automate.example.com
  /nodes:
    get:
      operationId: listNodes
      summary: List nodes
      tags:
      - Nodes
      responses:
        '200':
          description: Node list
      security:
      - chefSignedAuth: []
    post:
      operationId: createNode
      summary: Create a node
      tags:
      - Nodes
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Node created
      security:
      - chefSignedAuth: []
    servers:
    - url: https://{server}/organizations/{org}
      description: Chef Infra Server (per-organization)
      variables:
        server:
          default: chef.example.com
        org:
          default: example
  /nodes/{nodeName}:
    get:
      operationId: getNode
      summary: Get a node
      tags:
      - Nodes
      parameters:
      - name: nodeName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Node
      security:
      - chefSignedAuth: []
    put:
      operationId: updateNode
      summary: Update a node
      tags:
      - Nodes
      parameters:
      - name: nodeName
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Node updated
      security:
      - chefSignedAuth: []
    delete:
      operationId: deleteNode
      summary: Delete a node
      tags:
      - Nodes
      parameters:
      - name: nodeName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Node deleted
      security:
      - chefSignedAuth: []
    servers:
    - url: https://{server}/organizations/{org}
      description: Chef Infra Server (per-organization)
      variables:
        server:
          default: chef.example.com
        org:
          default: example
components:
  securitySchemes:
    apiToken:
      type: apiKey
      in: header
      name: api-token
      description: API token issued through the Chef Automate UI or admin API.
    chefSignedAuth:
      type: apiKey
      in: header
      name: X-Ops-Authorization
      description: Chef signed-header authentication using an RSA key associated with a client.
x-refined-from:
- chef-automate-api-openapi.yml
- chef-infra-server-api-openapi.yml