Developer platform · API v1

Build with the FastDocs API.

Read the live demo database through a typed, versioned API. Selected integration writes are implemented behind bearer-token authentication.

Public preview access. GET endpoints require no authentication. Writes return 503 until FASTSME_API_TOKEN is configured; enabled clients send Authorization: Bearer <token>.

Resources

Documents

Block-based documents and their publishing identifiers.

GET /api/v1/documentsGET /api/v1/documents/{id}

Folders

Document organisation folders.

GET /api/v1/foldersGET /api/v1/folders/{id}

Templates

Reusable document structures.

GET /api/v1/templatesGET /api/v1/templates/{id}

Versions

Immutable document snapshots and version history.

GET /api/v1/versionsGET /api/v1/versions/{id}

Quick start

curl "https://docs.fastsme.com/api/v1/documents?limit=20"

python - <<'PY'
import requests
rows = requests.get("https://docs.fastsme.com/api/v1/documents", timeout=20).json()
print(rows["data"])
PY

Runtime OpenAPI: /api/openapi.json · Stable compatibility schema: /swagger.json · Interactive docs: /api/docs