Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.letmepost.dev/llms.txt

Use this file to discover all available pages before exploring further.

The Python SDK is a post-launch deliverable. Until then, the raw HTTP surface is the supported integration path:
import os, uuid, requests

def post_to_letmepost(body: dict) -> dict:
    res = requests.post(
        "https://api.letmepost.dev/v1/posts",
        headers={
            "Authorization": f"Bearer {os.environ['LMP_KEY']}",
            "Idempotency-Key": str(uuid.uuid4()),
            "Content-Type": "application/json",
        },
        json=body,
        timeout=30,
    )
    if not res.ok:
        raise RuntimeError(res.json()["error"])
    return res.json()
Watch the GitHub releases for the SDK announcement.