Kitchen Stories UserCookbooksRecipes API

The UserCookbooksRecipes API from Kitchen Stories — 2 operation(s) for usercookbooksrecipes.

Operations 4

GET /users/me/cookbooks/{cookbook-uuid}/recipes/ See `/users/me/cookbooks/cookbook-uuid/items/`. This endpoints return internal recipes and articles only) #
POST /users/me/cookbooks/{cookbook-uuid}/recipes/ See `/users/me/cookbooks/{cookbook-uuid}/items/` this endpoint adds internal recipes and articles only #
PUT /users/me/cookbooks/{cookbook-uuid}/recipes/{feeditem-uuid}/ See `/users/me/cookbooks/cookbook-uuid/items/feeditem-uuid`. Move an internal recipe or article from one cookbook to another #
DELETE /users/me/cookbooks/{cookbook-uuid}/recipes/{feeditem-uuid}/ See `/users/me/cookbooks/cookbook-uuid/items/feeditem-uuid`. Delete an internal recipe or article from a cookbook #

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/kitchenstories-usercookbooksrecipes-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

kitchenstories-usercookbooksrecipes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '3'
  title: Kitchen Stories Internal Articles Admin User Cookbooks Recipes API
  description: ''
  contact:
    email: hello@kitchenstories.com
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: https://api.kitchenstories.io/api
  description: LIVE Environment
- url: https://api.dev.kitchenstories.io/api
  description: Development Environment
- url: http://localhost:8000/api
  description: Local Environment
security:
- bearerAuth: []
- ApiKeyAuth: []
tags:
- name: UserCookbooksRecipes
paths:
  /users/me/cookbooks/{cookbook-uuid}/recipes/:
    get:
      deprecated: true
      summary: 'See `/users/me/cookbooks/cookbook-uuid/items/`. This endpoints return internal recipes and articles only)

        '
      operationId: cookbook-get-recipes-list
      parameters:
      - name: cookbook-uuid
        in: path
        description: Cookbook uuid
        required: true
        schema:
          type: string
          format: uuid
      tags:
      - UserCookbooksRecipes
      responses:
        '200':
          description: See `/users/me/cookbooks/cookbook-uuid/items/`
    post:
      deprecated: true
      summary: 'See `/users/me/cookbooks/{cookbook-uuid}/items/` this endpoint adds internal recipes and articles only

        '
      operationId: cookbook-create-ecipes-list
      parameters:
      - name: cookbook-uuid
        in: path
        description: Cookbook uuid
        required: true
        schema:
          type: string
          format: uuid
      tags:
      - UserCookbooksRecipes
      responses:
        '200':
          description: See `/users/me/cookbooks/{cookbook-uuid}/items/`
  /users/me/cookbooks/{cookbook-uuid}/recipes/{feeditem-uuid}/:
    put:
      deprecated: true
      summary: 'See `/users/me/cookbooks/cookbook-uuid/items/feeditem-uuid`. Move an internal recipe or article from one cookbook to another

        '
      operationId: cookbook-recipe-move
      tags:
      - UserCookbooksRecipes
      parameters:
      - name: cookbook-uuid
        in: path
        description: Cookbook uuid
        required: true
        schema:
          type: string
          format: uuid
      - name: feeditem-uuid
        in: path
        description: Internal Article or Recipe uuid
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        description: The returned id is the new cookbook-uuid
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/cookbook_update_json'
      responses:
        '200':
          description: Operation successfull
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                $ref: '#/components/schemas/form_response'
        '403':
          description: Forbidden. When user is not logged in
    delete:
      deprecated: true
      summary: 'See `/users/me/cookbooks/cookbook-uuid/items/feeditem-uuid`. Delete an internal recipe or article from a cookbook

        '
      operationId: cookbook-recipe-delete
      tags:
      - UserCookbooksRecipes
      parameters:
      - name: cookbook-uuid
        in: path
        description: Cookbook uuid
        required: true
        schema:
          type: string
          format: uuid
      - name: feeditem-uuid
        in: path
        description: Internal Recipe or Article uuid
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Operation successfull
          content:
            application/vnd.ajns.kitchenstories+json; version=3:
              schema:
                $ref: '#/components/schemas/form_response'
        '403':
          description: Forbidden. When user is not logged in
        '404':
          description: NotFound. When Cookbook does not exists
components:
  schemas:
    form_response:
      type: object
      properties:
        errors:
          type: array
          items:
            type: string
      required:
      - errors
    cookbook_update_json:
      type: object
      properties:
        id:
          type: string
      required:
      - id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Ultron-User