API overview

Because PuppetDB collects lots of data from Puppet, it's an ideal platform for new tools and applications that use that data. You can use the HTTP API described in these pages to interact with PuppetDB's data.

Summary

PuppetDB's API uses a Command/Query Responsibility Separation (CQRS) pattern. This means:

  • Data can be queried using a standard REST-style API. Queries are processed immediately.

  • When making changes to data (facts, catalogs, etc.), you must send an explicit command (as opposed to submitting data without comment and letting the receiver determine intent). Commands are processed asynchronously in FIFO order.

The PuppetDB API consists of the following parts:

Queries

PuppetDB's data can be queried with a REST API.

The available query endpoints are documented in the pages linked below.

Commands

Commands are sent via HTTP but do not use a REST-style interface.

PuppetDB supports a relatively small number of commands. The command submission interface and all available commands are described at the commands page.

Unlike the query API, these commands are generally only useful to Puppet itself, and all format conversion and command submission is handled by the PuppetDB-termini on your Puppet Server.

The "replace" commands all require data in one of the wire formats described below.