Nutshell Notes API

Free-text notes attached to accounts, contacts and leads, with delete and undelete. 5 operation(s) across 3 path(s).

Operations 5

GET /notes/{id} Get a note #
DELETE /notes/{id} Delete a note. #
POST /notes/{id}/undelete Undelete a note. #
GET /notes Get a list of notes #
POST /notes Create a note #

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-notes-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-notes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nutshell Notes 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: Notes
paths:
  /notes/{id}:
    get:
      tags:
      - Notes
      summary: Get a note
      description: Get a single note by the ID provided.
      operationId: 7cda4297fad55a1bd186049667840325
      parameters:
      - name: id
        in: path
        description: Note ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Note
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Note'
      security:
      - basicAuth: []
    delete:
      tags:
      - Notes
      summary: Delete a note.
      description: Delete a note by the ID provided. Can be restored with the undelete endpoint.
      operationId: 836127953fcc40da01ecc8c605bad12a
      parameters:
      - name: id
        in: path
        description: Note ID
        required: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: Note
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Note'
      security:
      - basicAuth: []
  /notes/{id}/undelete:
    post:
      tags:
      - Notes
      summary: Undelete a note.
      description: Undelete a note by the ID provided.
      operationId: 56325ab1a38cdcc6bcbbdbe540a78907
      parameters:
      - name: id
        in: path
        description: Note ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Note
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Note'
      security:
      - basicAuth: []
  /notes:
    get:
      tags:
      - Notes
      summary: Get a list of notes
      description: Get a list of notes.
      operationId: c855c6708aa8bb59e12dd00ac6afbd04
      parameters:
      - name: page[limit]
        in: query
        description: Limit the number of results returned, for pagination.
        required: false
        schema:
          type: string
      - name: page[page]
        in: query
        description: Request a specific page of results, for pagination. Used in conjunction with the page[limit] parameter. Indexing is 0-based.
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Note
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Note'
      security:
      - basicAuth: []
    post:
      tags:
      - Notes
      summary: Create a note
      operationId: d75ec624406914f4ac17a0cf1fc38d05
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/notePostInput'
      responses:
        '201':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Note'
      security:
      - basicAuth: []
components:
  schemas:
    notePostInput:
      properties:
        data:
          properties:
            body:
              description: The text to display on the note
              example: Hello World!
            links:
              description: The entity to attach the note to
              properties:
                parent:
                  description: The entity to attach the note to
                  type: string
                  example: 3-contacts
              type: object
              example: 3-contacts
          type: object
      type: object
    HtmlLinkable:
      description: 'Adds an htmlUrl string attribute that represents a URL of an HTML representation of the

        response model.'
      properties:
        htmlUrl:
          description: The link to the entity within the app.
          type: string
          example: https://app.nutshell.com/lead/1006
        htmlUrlPath:
          description: The path to the entity within the app.
          type: string
          example: /lead/1006
      type: object
    Note:
      type: object
      allOf:
      - $ref: '#/components/schemas/HtmlLinkable'
      - properties:
          id:
            description: The API ID of this entity, formatted {integer}-{entityType}
            type: string
            example: 3-contacts
          createdTime:
            type: string
          deletedTime:
            type: string
          href:
            type: string
          body:
            type: string
          bodyHtml:
            type: string
          bodyMarkup:
            type: string
          isEditable:
            type: boolean
          parentType:
            type: string
        type: object
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic