Formstack Forms API

The Forms API from Formstack — 5 operation(s) for forms.

Operations 8

GET /forms.json List forms #
POST /forms.json Create a form #
GET /form/{formId}.json Get form #
PUT /form/{formId}.json Update form #
DELETE /form/{formId}.json Delete form #
GET /form/{formId}/html.json Get form HTML #
POST /form/{formId}/copy.json Copy form #
POST /form/{formId}/prefill.json Generate prefilled URL #

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/formstack-forms-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

formstack-forms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Formstack Confirmations Forms API
  description: 'REST API for Formstack — manage forms, fields, submissions, confirmations,

    notifications, webhooks, themes, folders, portals, smart lists, subaccounts,

    submit actions, and partial submissions. Authentication uses OAuth 2.0.


    Detailed endpoint definitions are derived from the public developer portal

    at https://developers.formstack.com/ (machine-readable index at

    https://developers.formstack.com/llms.txt).

    '
  version: 2025.0
  contact:
    name: Formstack Developers
    url: https://developers.formstack.com/
servers:
- url: https://www.formstack.com/api/v2
  description: Production v2
security:
- oauth2: []
tags:
- name: Forms
paths:
  /forms.json:
    get:
      summary: List forms
      operationId: listForms
      tags:
      - Forms
      parameters:
      - $ref: '#/components/parameters/page'
      - $ref: '#/components/parameters/per_page'
      - name: folder
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Paginated list of forms.
    post:
      summary: Create a form
      operationId: createForm
      tags:
      - Forms
      responses:
        '200':
          description: Form created.
  /form/{formId}.json:
    parameters:
    - $ref: '#/components/parameters/formId'
    get:
      summary: Get form
      operationId: getForm
      tags:
      - Forms
      responses:
        '200':
          description: Form.
    put:
      summary: Update form
      operationId: updateForm
      tags:
      - Forms
      responses:
        '200':
          description: Form updated.
    delete:
      summary: Delete form
      operationId: deleteForm
      tags:
      - Forms
      responses:
        '200':
          description: Form deleted.
  /form/{formId}/html.json:
    parameters:
    - $ref: '#/components/parameters/formId'
    get:
      summary: Get form HTML
      operationId: getFormHtml
      tags:
      - Forms
      responses:
        '200':
          description: Form HTML.
  /form/{formId}/copy.json:
    parameters:
    - $ref: '#/components/parameters/formId'
    post:
      summary: Copy form
      operationId: copyForm
      tags:
      - Forms
      responses:
        '200':
          description: Copied form.
  /form/{formId}/prefill.json:
    parameters:
    - $ref: '#/components/parameters/formId'
    post:
      summary: Generate prefilled URL
      operationId: prefillForm
      tags:
      - Forms
      responses:
        '200':
          description: Prefilled URL generated.
components:
  parameters:
    formId:
      name: formId
      in: path
      required: true
      schema:
        type: string
    page:
      name: page
      in: query
      schema:
        type: integer
        minimum: 1
    per_page:
      name: per_page
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 100
  securitySchemes:
    oauth2:
      type: oauth2
      description: OAuth 2.0 authorization code flow.
      flows:
        authorizationCode:
          authorizationUrl: https://www.formstack.com/api/v2/oauth2/authorize
          tokenUrl: https://www.formstack.com/api/v2/oauth2/token
          scopes:
            forms_read: Read forms
            forms_write: Manage forms
            submissions_read: Read submissions
            submissions_write: Manage submissions