Sitefire Book Demo API

The Book Demo API from Sitefire — 2 operation(s) for book demo.

Operations 2

GET /book-demo/slots List available demo slots #
POST /book-demo Book a demo slot #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sitefire-book-demo-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sitefire-book-demo-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sitefire Book-a-Demo Book Demo API
  version: '1.0'
  description: Public, unauthenticated REST API for programmatically booking a product demo with Sitefire. Documented in Sitefire's llms.txt. No API key is required. This is the only public REST API Sitefire currently documents; the primary programmatic surface is the hosted MCP server at https://app.sitefire.ai/api/mcp.
  contact:
    name: Sitefire
    email: support@sitefire.ai
    url: https://sitefire.ai
servers:
- url: https://sitefire.ai/api
  description: Production
tags:
- name: Book Demo
paths:
  /book-demo/slots:
    get:
      operationId: getBookDemoSlots
      summary: List available demo slots
      description: Returns the available product-demo time slots for a given date and timezone.
      parameters:
      - name: date
        in: query
        required: true
        description: Target date in YYYY-MM-DD format.
        schema:
          type: string
          format: date
          example: '2026-07-28'
      - name: timezone
        in: query
        required: true
        description: IANA timezone name used to render the slots.
        schema:
          type: string
          example: America/New_York
      responses:
        '200':
          description: Available slots for the requested date.
          content:
            application/json:
              schema:
                type: object
      tags:
      - Book Demo
  /book-demo:
    post:
      operationId: bookDemo
      summary: Book a demo slot
      description: Books one of the available demo slots returned by getBookDemoSlots.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - name
              - email
              - time
              - timezone
              properties:
                name:
                  type: string
                  example: Your Name
                email:
                  type: string
                  format: email
                  example: you@company.com
                time:
                  type: string
                  description: A slot value returned by getBookDemoSlots.
                timezone:
                  type: string
                  example: America/New_York
      responses:
        '200':
          description: Demo booking confirmation.
          content:
            application/json:
              schema:
                type: object
      tags:
      - Book Demo