> ## Documentation Index
> Fetch the complete documentation index at: https://docs.formitto.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Formitto API

> Read and manage your forms, submissions, calendars, bookings, shop widgets, and orders over a simple REST API.

Formitto lets you build embeddable **forms**, **booking calendars**, and
**e-commerce widgets** for your website — collecting submissions, scheduling
bookings, and taking payments without a backend of your own. The Formitto API
gives you programmatic access to the same data your dashboard shows, so you can
wire Formitto into Zapier, native integrations, internal tools, or your own
scripts.

The API is a REST service over HTTPS. Every response is JSON. List endpoints
return a `{ data, pagination }` envelope; single-resource endpoints return the
object directly. You authenticate with an API key and the surface is versioned
under `/v1`.

<CardGroup cols={3}>
  <Card title="Get started" icon="rocket" href="/getting-started">
    Create a key and make your first request in a few minutes.
  </Card>

  <Card title="API reference" icon="code" href="/api-reference/introduction">
    Every endpoint, parameter, and response — generated from our OpenAPI spec.
  </Card>

  <Card title="TypeScript SDK" icon="js" href="/sdks">
    `@formitto/sdk` — a typed client with a bundled webhook verifier.
  </Card>
</CardGroup>

## Base URL

All API requests go to:

```
https://formitto.com/v1
```

## What you can do today

* **Forms** — create, read, update, and archive forms; ingest submissions.
* **Submissions** — list a form's submissions and read individual entries.
* **Calendars & bookings** — read your calendar widgets and their bookings.
* **Shop & orders** — read your e-commerce widgets and their orders.
* **Webhooks** — verify signed event deliveries with the bundled SDK helper.

Read access is available across all resources; write access is currently scoped
to forms and submissions. See [Authentication](/authentication) for the scope
model.
