Home · Developers
Developers

One REST API per domain. Bearer token. That's it.

Connect Florentin via MCP, SDK or REST. Generated clients for cURL, TypeScript and Python live in the Scalar reference.

Quickstart

Live in three steps

Connect

Connect via MCP, SDK or REST, link Stripe.

Products & prices

What you sell, what it costs, who has access.

Live

Customers manage themselves in the portal.

curltypescriptpython
customers.create
# base: https://<provider-subdomain>.florentin.ai/api/v1
$ curl -X POST https://acme.florentin.ai/api/v1/customers \
    -H "Authorization: Bearer 42|kP3f9c…" \
    -H "Content-Type: application/json" \
    -d '{ "name": "Ada Lovelace", "email": "team@kunde.io" }'
← 201  { "data": { "id": "7b9c3e2a-…", "email": "team@kunde.io" }, "meta": { "message": "Customer created successfully" } }
Reference & more