Padlet AI Recipe Boards API

The AI Recipe Boards API from Padlet — 2 operation(s) for ai recipe boards.

Operations 2

POST /ai-recipe-boards Create an AI recipe board #
GET /ai-recipe-boards/status/{status_key} Get AI recipe board status #

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/padlet-ai-recipe-boards-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

padlet-ai-recipe-boards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Padlet AI Recipe Boards API
  version: '1.0'
  description: Padlet's public REST API (JSON:API) to read boards and their posts, sections, and comments, create posts, comments, and reactions, generate AI recipe boards, and read user and organization data. Authenticated with an x-api-key header tied to a paying Padlet user with admin access to the board.
  contact:
    name: Padlet Engineer
    email: engine@wallwisher.com
    url: https://legal.padlet.com
servers:
- url: https://api.padlet.dev/v1
tags:
- name: AI Recipe Boards
paths:
  /ai-recipe-boards:
    post:
      tags:
      - AI Recipe Boards
      summary: Create an AI recipe board
      description: Creates a new AI-generated board using natural language instructions
      operationId: create-ai-recipe-board
      requestBody:
        $ref: '#/components/requestBodies/createAiRecipeBoard'
      responses:
        '202':
          $ref: '#/components/responses/aiRecipeBoardCreation'
        '400':
          $ref: '#/components/responses/400-bad-request'
        '401':
          $ref: '#/components/responses/401-unauthorized'
        '403':
          $ref: '#/components/responses/403-forbidden'
      security:
      - apiKey: []
  /ai-recipe-boards/status/{status_key}:
    get:
      tags:
      - AI Recipe Boards
      summary: Get AI recipe board status
      description: Gets the current status of an AI recipe board creation request
      operationId: get-ai-recipe-board-status
      responses:
        '200':
          $ref: '#/components/responses/aiRecipeBoardStatus'
        '401':
          $ref: '#/components/responses/401-unauthorized'
        '404':
          $ref: '#/components/responses/aiRecipeBoardStatusNotFound'
      security:
      - apiKey: []
components:
  securitySchemes:
    apiKey:
      name: X-Api-Key
      type: apiKey
      in: header
      description: ''