Formspree Forms API

The Forms API from Formspree — 1 operation(s) for forms.

Operations 1

GET /forms/{hashid}/submissions List form submissions #

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/formspree-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

formspree-forms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Formspree Form Submissions Forms API
  description: 'The Formspree Form Submissions API lets you programmatically retrieve submissions

    for forms you own. Requires a Professional or Business plan and an API key

    associated with the form.

    '
  version: '0'
  contact:
    name: Formspree Support
    url: https://help.formspree.io/
  license:
    name: Proprietary
servers:
- url: https://formspree.io/api/0
  description: Production
security:
- apiKeyBasic: []
tags:
- name: Forms
paths:
  /forms/{hashid}/submissions:
    get:
      summary: List form submissions
      description: Fetch submissions for a given form, identified by its hashid.
      operationId: listFormSubmissions
      parameters:
      - name: hashid
        in: path
        required: true
        description: The form's hashid (e.g. as found in the form's action URL).
        schema:
          type: string
      - name: since
        in: query
        description: Return submissions created after this ISO 8601 timestamp.
        schema:
          type: string
          format: date-time
      - name: limit
        in: query
        description: Maximum number of submissions to return.
        schema:
          type: integer
          minimum: 1
      - name: offset
        in: query
        description: Number of submissions to skip for pagination.
        schema:
          type: integer
          minimum: 0
      - name: order
        in: query
        description: Sort order. Defaults to descending.
        schema:
          type: string
          enum:
          - asc
          - desc
      - name: spam
        in: query
        description: Whether to include spam-flagged submissions. Defaults to false.
        schema:
          type: boolean
      responses:
        '200':
          description: List of submissions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmissionsResponse'
        '401':
          description: Missing or invalid credentials.
        '403':
          description: API access not enabled for this plan or form.
        '404':
          description: Form not found.
      tags:
      - Forms
components:
  schemas:
    SubmissionsResponse:
      type: object
      properties:
        fields:
          type: array
          description: List of field names present across the returned submissions.
          items:
            type: string
        submissions:
          type: array
          items:
            $ref: '#/components/schemas/Submission'
    Submission:
      type: object
      description: An individual form submission. Field keys vary per form.
      additionalProperties: true
      properties:
        _status:
          type: object
          description: Delivery and processing state for this submission.
          additionalProperties: true
  securitySchemes:
    apiKeyBasic:
      type: http
      scheme: basic
      description: 'Basic auth with empty username and the form API key as password

        (e.g. `curl -u :API_KEY https://formspree.io/api/0/forms/{hashid}/submissions`).

        '