Jotform Form API

The Form API from Jotform — 10 operation(s) for form.

Operations 14

GET /user/forms List forms owned by the user #
GET /form/{formID} Get information about a form #
DELETE /form/{formID} Delete a form #
GET /form/{formID}/questions List all questions in a form #
GET /form/{formID}/question/{questionID} Get a single question by ID #
DELETE /form/{formID}/question/{questionID} Delete a question from a form #
GET /form/{formID}/properties Get all properties of a form #
GET /form/{formID}/properties/{propertyKey} Get a single property value of a form #
GET /form/{formID}/submissions List the submissions of a form #
POST /form/{formID}/submissions Submit data to a form (create a new submission) #
GET /form/{formID}/files List files uploaded to a form #
GET /form/{formID}/reports List reports for a form #
POST /form/{formID}/reports Create a new report for a form #
POST /form/{formID}/clone Clone an existing form #

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/jotform-form-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

jotform-form-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jotform REST Folder Form API
  description: 'Jotform is an online form builder. The REST API exposes forms,

    submissions, reports, folders, users, files, system, labels and webhooks.

    Authentication is performed with an API key sent either as the APIKEY

    HTTP header or the apiKey query string parameter. The API is available on

    three regional/compliance hostnames: standard (api.jotform.com), EU

    (eu-api.jotform.com), and HIPAA (hipaa-api.jotform.com).

    '
  version: 1.0.0
  contact:
    name: Jotform API Documentation
    url: https://api.jotform.com/docs/
servers:
- url: https://api.jotform.com
  description: Standard (US)
- url: https://eu-api.jotform.com
  description: EU
- url: https://hipaa-api.jotform.com
  description: HIPAA
security:
- ApiKeyHeader: []
- ApiKeyQuery: []
tags:
- name: Form
paths:
  /user/forms:
    get:
      tags:
      - Form
      summary: List forms owned by the user
      operationId: getUserForms
      responses:
        '200':
          description: Form collection.
  /form/{formID}:
    get:
      tags:
      - Form
      summary: Get information about a form
      operationId: getForm
      parameters:
      - $ref: '#/components/parameters/FormID'
      responses:
        '200':
          description: Form metadata.
    delete:
      tags:
      - Form
      summary: Delete a form
      operationId: deleteForm
      parameters:
      - $ref: '#/components/parameters/FormID'
      responses:
        '200':
          description: Deletion result.
  /form/{formID}/questions:
    get:
      tags:
      - Form
      summary: List all questions in a form
      operationId: getFormQuestions
      parameters:
      - $ref: '#/components/parameters/FormID'
      responses:
        '200':
          description: Question collection.
  /form/{formID}/question/{questionID}:
    get:
      tags:
      - Form
      summary: Get a single question by ID
      operationId: getFormQuestion
      parameters:
      - $ref: '#/components/parameters/FormID'
      - in: path
        name: questionID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Question.
    delete:
      tags:
      - Form
      summary: Delete a question from a form
      operationId: deleteFormQuestion
      parameters:
      - $ref: '#/components/parameters/FormID'
      - in: path
        name: questionID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Deletion result.
  /form/{formID}/properties:
    get:
      tags:
      - Form
      summary: Get all properties of a form
      operationId: getFormProperties
      parameters:
      - $ref: '#/components/parameters/FormID'
      responses:
        '200':
          description: Properties collection.
  /form/{formID}/properties/{propertyKey}:
    get:
      tags:
      - Form
      summary: Get a single property value of a form
      operationId: getFormProperty
      parameters:
      - $ref: '#/components/parameters/FormID'
      - in: path
        name: propertyKey
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Property value.
  /form/{formID}/submissions:
    get:
      tags:
      - Form
      summary: List the submissions of a form
      operationId: getFormSubmissions
      parameters:
      - $ref: '#/components/parameters/FormID'
      responses:
        '200':
          description: Submission collection.
    post:
      tags:
      - Form
      summary: Submit data to a form (create a new submission)
      operationId: createFormSubmission
      parameters:
      - $ref: '#/components/parameters/FormID'
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              additionalProperties: true
      responses:
        '200':
          description: Newly created submission.
  /form/{formID}/files:
    get:
      tags:
      - Form
      summary: List files uploaded to a form
      operationId: getFormFiles
      parameters:
      - $ref: '#/components/parameters/FormID'
      responses:
        '200':
          description: File collection.
  /form/{formID}/reports:
    get:
      tags:
      - Form
      summary: List reports for a form
      operationId: getFormReports
      parameters:
      - $ref: '#/components/parameters/FormID'
      responses:
        '200':
          description: Report collection.
    post:
      tags:
      - Form
      summary: Create a new report for a form
      operationId: createFormReport
      parameters:
      - $ref: '#/components/parameters/FormID'
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              required:
              - title
              - list_type
              properties:
                title:
                  type: string
                list_type:
                  type: string
                  enum:
                  - grid
                  - table
                  - csv
                  - excel
                  - calendar
                  - rss
                fields:
                  type: string
      responses:
        '200':
          description: Newly created report.
  /form/{formID}/clone:
    post:
      tags:
      - Form
      summary: Clone an existing form
      operationId: cloneForm
      parameters:
      - $ref: '#/components/parameters/FormID'
      responses:
        '200':
          description: Newly cloned form.
components:
  parameters:
    FormID:
      in: path
      name: formID
      required: true
      schema:
        type: string
      description: Identifier of the Jotform form.
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: APIKEY
    ApiKeyQuery:
      type: apiKey
      in: query
      name: apiKey