Developer platform · API v1

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

Meetings

Scheduled meetings, agendas, rooms, and summaries.

GET /api/v1/meetingsGET /api/v1/meetings/{id}

Participants

Meeting participants, roles, and RSVP state.

GET /api/v1/participantsGET /api/v1/participants/{id}

Quick start

curl "https://meet.fastsme.com/api/v1/meetings?limit=20"

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

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