Skip to main content
GET
/
playbooks
List playbooks
curl --request GET \
  --url https://api.pickfu.com/v1/playbooks \
  --header 'Authorization: Bearer <token>'
{
  "playbooks": [
    {
      "slug": "<string>",
      "name": "<string>",
      "description": "<string>",
      "industry": "<string>",
      "poll_count": 123,
      "duration": "<string>",
      "icon": "<string>",
      "url": "<string>"
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123
  }
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

OAuth2 access token obtained via the authorization flow. Include in the Authorization header as: Bearer {access_token}

Query Parameters

page
integer
default:1

Page number

Required range: x >= 1
limit
integer
default:20

Number of playbooks per page

Required range: 1 <= x <= 50
industry
string

Filter playbooks by industry (e.g. "ecommerce", "mobile apps")

Response

Default Response

playbooks
object[]
pagination
object