Skip to main content
GET
/
calendar-widgets
List calendar widgets
curl --request GET \
  --url https://formitto.com/v1/calendar-widgets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "domain": {
        "id": 123,
        "domain": "<string>"
      },
      "bookingCount": 123,
      "settings": {},
      "appearance": {},
      "behavior": {}
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "pages": 123
  }
}

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.

Authorizations

Authorization
string
header
required

A Formitto API key created in the dashboard (Settings → API keys). Pass it as Authorization: Bearer fmt_live_....

Query Parameters

page
integer
default:1

1-based page number.

Required range: x >= 1
limit
integer
default:25

Items per page (max 100).

Required range: 1 <= x <= 100
domainId
integer

Narrow results to a specific registered domain id.

Response

A page of calendar widgets.

data
object[]
required
pagination
object
required