Developer platform · API v1

Build with the FastSlides 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

Presentations

Presentation decks and their visual themes.

GET /api/v1/presentationsGET /api/v1/presentations/{id}

Slides

Ordered slide content and layouts.

GET /api/v1/slidesGET /api/v1/slides/{id}

Quick start

curl "https://slides.fastsme.com/api/v1/presentations?limit=20"

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

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