New API Launch: Guidebooks v1
We’re excited to launch our new REST API (v1) so you can programmatically access your guidebooks. Here’s what’s available today and how to get started.
Check out the docs here.
Authentication
- Use
Bearer Authorization with your generated access token.
- All endpoints are throttled under the
api rate limit of 60 requests per minute.
Base URL
Endpoints (current release)
- List guidebooks
- GET
/api/v1/{account}/guidebooks
- Returns all guidebooks for the specified account.
- Get a guidebook
- GET
/api/v1/{account}/guidebooks/{guidebook}
- Returns a single guidebook by ID for the specified account.
Quick usage example
GET /api/v1/{account}/guidebooks
Authorization: Bearer <your-token>
Accept: application/json
What’s next
More endpoints are on the roadmap. If there’s something you want prioritized—create, update, or delete guidebooks, or additional resources—let us know so we can add it to the next release.
Happy building!