Nutshell Forms API

Nutshell Forms and their fields, including the field IDs used in each published form. 3 operation(s) across 3 path(s).

Operations 3

GET /forms Get all forms #
GET /forms/{id} Get a form #
GET /forms/{fieldId} Get a form field #

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

nutshell-forms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nutshell Forms API
  description: The most powerful API in the world
  version: 2.0.0
  contact:
    name: Nutshell Developers
    url: https://developers.nutshell.com
servers:
- url: https://app.nutshell.com/rest
  description: Nutshell REST API
tags:
- name: Forms
paths:
  /forms:
    get:
      tags:
      - Forms
      summary: Get all forms
      description: Get all non-archived nutshell forms along with the IDs of the fields used in each form.
      operationId: b0fec1131366b61118593ec9e86a4c9e
      responses:
        '200':
          description: Forms
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FormResponse'
      security:
      - basicAuth: []
  /forms/{id}:
    get:
      tags:
      - Forms
      summary: Get a form
      description: Get a single form by the ID provided. The fields used in the form are also returned in the response.
      operationId: c150c11fa75e601f12a5d0c3291b7e9c
      parameters:
      - name: id
        in: path
        description: Form ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Form
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/FormResponse'
                - properties:
                    wfFields:
                      type: array
                      items:
                        $ref: '#/components/schemas/Field'
                  type: object
      security:
      - basicAuth: []
  /forms/{fieldId}:
    get:
      tags:
      - Forms
      summary: Get a form field
      description: Get a single form field by the ID provided.
      operationId: 8218d4f193a6ef911f41a9ffdfbd4eb4
      parameters:
      - name: fieldId
        in: path
        description: Field Id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Form Field
          content:
            application/json:
              schema:
                properties:
                  wfFields:
                    type: array
                    items:
                      $ref: '#/components/schemas/Field'
                type: object
      security:
      - basicAuth: []
components:
  schemas:
    Field:
      properties:
        id:
          description: The API ID of this entity, formatted {integer}-{entityType}
          type: string
          example: 3-contacts
        label:
          type: string
          example: Full Name
        fieldName:
          type: string
          example: name
        fieldType:
          type: string
          example: textfield
        entityName:
          type: string
          example: Contacts
      type: object
    Form:
      properties:
        id:
          description: The API ID of this entity, formatted {integer}-{entityType}
          type: string
          example: 3-contacts
        name:
          description: The name of the form
          type: string
          example: Client Questionnaire
        href:
          type: string
        createdTime:
          type: string
      type: object
    FormLinks:
      properties:
        links:
          description: The IDs of the fields in the form
          properties:
            fields:
              type: array
              items:
                type: string
                example: 1-wfFields
          type: object
      type: object
    FormResponse:
      description: A full response object for a form-related endpoint.
      properties:
        meta:
          $ref: '#/components/schemas/meta'
        links:
          type: object
        wfForms:
          type: array
          items:
            allOf:
            - $ref: '#/components/schemas/Form'
            - $ref: '#/components/schemas/FormLinks'
      type: object
    meta:
      description: Information about the Nutshell instance making the request
      properties:
        instanceId:
          description: The Nutshell instance ID
          type: string
          example: '12345'
        siteId:
          description: Site ID for WebFX customers
          type: string
      type: object
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic