2ndKitchen Products API

The Products API from 2ndKitchen — 1 operation(s) for products.

Operations 1

POST /menus/products/batch_get

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/2ndkitchen-products-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

2ndkitchen-products-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 2ndKitchen - Restaurant Service Products API
  version: '1.0'
servers:
- url: https://restaurant-staging.2ndkitchen.com
  description: staging
tags:
- name: Products
paths:
  /menus/products/batch_get:
    post:
      description: Get products from different menus
      tags:
      - Products
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
              - menu_ids
              type: object
              properties:
                menu_ids:
                  description: ids of the menus that we are fetching products from
                  type: array
                  items:
                    type: integer
                  example:
                  - 322
                  - 323
                product_ids:
                  description: ids of the products that we want fetch
                  type: array
                  items:
                    type: integer
                  example:
                  - 37878
                  - 37879
                stock_status:
                  description: whether the products we want to fetch are in stock or not
                  type: integer
                  enum:
                  - 0
                  - 1
      responses:
        '200':
          description: Returns a list of producs.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: ok
                  data:
                    type: object
                    properties:
                      order_id:
                        type: string
                        example: ROYALOAK-123456
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT