Skip to main content
GET
/
v2
/
playbooks
/
{id}
Get Playbook
curl --request GET \
  --url https://app.textql.com/v2/playbooks/{id} \
  --header 'Authorization: Bearer <token>'
{
  "playbook": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "prompt": "<string>",
    "status": "draft",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "reports": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "<string>",
      "content": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total_reports_count": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.textql.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key or JWT token

Path Parameters

id
string<uuid>
required

Playbook ID

Query Parameters

limit
integer<int64>

Maximum number of reports to return

offset
integer<int64>

Number of reports to skip

Response

Playbook details with reports

playbook
object
reports
object[]
total_reports_count
integer<int64>