Nory Inventory API

The Inventory API from Nory — 4 operation(s) for inventory.

Operations 5

POST /inventory/ingest Ingest items / batch items / menu items
GET /inventory/branches/{branchId}/counts Get counts of a branch
POST /inventory/branches/{branchId}/counts Create a count
GET /inventory/branches/{branchId}/deliveries Get deliveries of a branch
GET /inventory/suppliers Get all suppliers

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/nory-inventory-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

nory-inventory-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nory Middleware - Sandbox Environment Authorization Inventory API
  version: 1.0.0
  description: 'Nory '
servers:
- https://sandbox.nory.ai
- http://localhost:8000
tags:
- name: Inventory
paths:
  /inventory/ingest:
    post:
      tags:
      - Inventory
      name: Ingest
      summary: Ingest items / batch items / menu items
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful ingest message
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  data:
                    type: string
        '400':
          description: Incorrect data supplied
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
        '401':
          description: No auth token
        '403':
          description: JWT token and username from client don't match
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Ingest'
  /inventory/branches/{branchId}/counts:
    get:
      tags:
      - Inventory
      name: Counts
      summary: Get counts of a branch
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: branchId
        schema: string
        required: true
      responses:
        '200':
          description: List of counts
          content:
            application/json:
              schema:
                type: object
                properties:
                  counts:
                    type: array
                    items:
                      $ref: '#/components/schemas/Count'
        '400':
          description: Incorrect data supplied
        '401':
          description: No auth token
        '403':
          description: JWT token and username from client don't match
    post:
      tags:
      - Inventory
      name: Counts
      summary: Create a count
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: branchId
        schema: string
        required: true
      responses:
        '200':
          description: Created count
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    $ref: '#/components/schemas/Count'
        '400':
          description: Incorrect data supplied
        '401':
          description: No auth token
        '403':
          description: JWT token and username from client don't match
        '500':
          description: Unexpected error
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Count'
  /inventory/branches/{branchId}/deliveries:
    get:
      tags:
      - Inventory
      name: Deliveries
      summary: Get deliveries of a branch
      security:
      - bearerAuth: []
      parameters:
      - in: path
        name: branchId
        schema: string
        required: true
      responses:
        '200':
          description: List of deliveries
          content:
            application/json:
              schema:
                type: object
                properties:
                  deliveries:
                    type: array
                    items:
                      $ref: '#/components/schemas/Delivery'
        '400':
          description: Incorrect data supplied
        '401':
          description: No auth token
        '403':
          description: JWT token and username from client don't match
  /inventory/suppliers:
    get:
      tags:
      - Inventory
      name: Suppliers
      summary: Get all suppliers
      security:
      - bearerAuth: []
      responses:
        '200':
          description: List of suppliers
          content:
            application/json:
              schema:
                type: object
                properties:
                  suppliers:
                    type: array
                    items:
                      $ref: '#/components/schemas/Supplier'
        '400':
          description: Incorrect data supplied
        '401':
          description: No auth token
        '403':
          description: JWT token and username from client don't match
components:
  schemas:
    Count:
      type: object
      properties:
        id:
          type: string
        created:
          type: string
          format: date-time
        modified:
          type: string
          format: date-time
        type:
          type: string
          enum:
          - full
        status:
          type: string
          enum:
          - draft
          - completed
        branch_id:
          type: string
        brand_item_counts:
          type: array
          items:
            $ref: '#/components/schemas/BrandItemCount'
    Ingest:
      type: object
      properties:
        brand_id:
          type: string
        ingest_type:
          type: string
        content:
          type: string
    BrandItemUnitCount:
      type: object
      properties:
        unit:
          type: array
          items:
            $ref: '#/components/schemas/Unit'
        quantity:
          type: number
    BrandItemCount:
      type: object
      properties:
        brand_item:
          type: string
        unit_counts:
          type: array
          items:
            $ref: '#/components/schemas/BrandItemUnitCount'
    BaseUnit:
      type: object
      properties:
        unit_of_measure:
          type: number
    Unit:
      type: object
      properties:
        unit_type:
          type: string
          enum:
          - base
          - package
          - case
        unit_body:
          $ref: '#/components/schemas/BaseUnit'
  securitySchemes:
    bearerAuth:
      type: apiKey
      name: Authorization
      scheme: bearer
      in: header