Whimsical Files.list API

The Files.list API from Whimsical — 1 operation(s) for files.list.

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/whimsical-files-list-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 email required.

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

OpenAPI Specification

whimsical-files-list-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Whimsical API (Beta) Comments.list Files.list API
  description: 'The Whimsical API is a beta, read-only HTTP RPC-style API for retrieving

    users, teams, files and comments from a Whimsical workspace. All endpoints

    accept POST requests with a JSON body. OAuth 2.1 is used to authorize

    requests; access to the beta requires approval from Whimsical support.

    '
  version: 0.1.0-beta
  contact:
    name: Whimsical
    url: https://whimsical.com/learn/integrations/api
servers:
- url: https://whimsical.com/api/v1
  description: Production (base path inferred; contact Whimsical for the exact base URL)
security:
- OAuth2: []
tags:
- name: Files.list
paths:
  /files.list:
    post:
      summary: List files within a parent item
      operationId: filesList
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                parentId:
                  type: string
                  description: Parent file, folder, section, or team id
              required:
              - parentId
      responses:
        '200':
          description: File list
          content:
            application/json: {}
      tags:
      - Files.list
components:
  securitySchemes:
    OAuth2:
      type: oauth2
      description: OAuth 2.1 authorization (contact Whimsical support for client credentials)
      flows:
        authorizationCode:
          authorizationUrl: https://whimsical.com/oauth/authorize
          tokenUrl: https://whimsical.com/oauth/token
          scopes: {}