API Reference
Get a playbook
A playbook's full detail, content included.
GET
/routines/playbooks/{name}anyPath parameters
namestringrequiredThe playbook name.
Responses
200The playbook
json
{
"id": 1,
"name": "security-basics",
"routines": ["review", "bughunt"],
"content": "# Security basics\n\n- ..."
}404No such playbook
json
{ "detail": "playbook 'security-basics' not found" }