Python SDK (Coming Soon)

The Python SDK is coming soon. It will be auto-generated from the same OpenAPI spec as the Node.js SDK, with full type hints and async support.

In the meantime

You can use the Slotflow API directly with requests or httpx:

1import requests
2
3API_KEY = "sk_live_your_api_key"
4BASE = "https://api.slotflow.dev/v1"
5headers = {"Authorization": f"Bearer {API_KEY}"}
6
7# Get available slots
8slots = requests.get(
9 f"{BASE}/humans/HUMAN_ID/slots",
10 headers=headers,
11 params={"date_from": "2026-03-15", "date_to": "2026-03-20", "duration": 30},
12).json()["slots"]
13
14# Book a slot
15booking = requests.post(
16 f"{BASE}/bookings",
17 headers=headers,
18 json={
19 "human_id": "HUMAN_ID",
20 "starts_at": slots[0]["starts_at"],
21 "duration": 30,
22 "attendee_name": "Alex Rivera",
23 },
24).json()

See the Quickstart for a complete walkthrough with Python examples at every step.

Want to be notified?

Email hello@slotflow.dev and we’ll let you know when the Python SDK ships.