PuppetDB 0.9 » Spec » Querying Facts
Querying facts is accomplished by making an HTTP request to the
/facts REST endpoint.
Query format
Facts are queried by making a request to a URL of the following form:
The HTTP request must conform to the following format:
- The URL requested is
/facts/<node> - A
GETis used. - There is an
Acceptheader containingapplication/json.
The supplied <node> path component indicaates the certname for which
facts should be retrieved.
Response format
{"name": "<node>",
"facts": {
"<fact name>": "<fact value>",
"<fact name>": "<fact value>",
...
}
}
If no facts are known for the supplied node, an HTTP 404 is returned.