Beta API (v0) — This API is in beta and may change in future versions. Breaking changes may occur without prior notice.

Developer Documentation

Build with the NextDocs API to create documents and presentations programmatically.

API Reference

Complete API documentation with endpoints, parameters, and examples.

Guides

Step-by-step tutorials and best practices. Coming soon.

Quick Start

  1. Create an API key in your API settings
  2. Make a POST request to /v0/generate/document or /v0/generate/presentation
  3. Poll /v0/jobs/{job_id} until the job completes
  4. Access your generated document via the returned URL

Example Request

curl -X POST https://api.nextdocs.io/v0/generate/presentation \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Q4 Investor Pitch Deck",
    "prompt": "Create a professional pitch deck for a SaaS startup raising Series A, highlighting growth metrics and market opportunity"
  }'