Paraşüt Inventory Levels API

The Inventory Levels API from Paraşüt — 1 operation(s) for inventory levels.

Operations 1

GET /{company_id}/product/{product_id}/inventory_levels Index #

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/para-t-inventory-levels-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

para-t-inventory-levels-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 4.0.0
  title: Paraşüt - API V4 Inventory Levels API
  x-logo:
    url: https://apidocs.parasut.com/logo.png
    backgroundColor: null
  description: '# CHANGE LOG

    ### **2021-10-11**

    #### Added

    - Belirli Firmalar İçin Özel Gereksinimler alanına Amazon için gerekli özel alanlar eklendi.'
servers:
- url: https://api.parasut.com/v4
security:
- parasut_auth: []
tags:
- name: Inventory Levels
  x-displayName: DEPO STOK SEVİYESİ
paths:
  /{company_id}/product/{product_id}/inventory_levels:
    parameters:
    - name: company_id
      description: Firma ID
      in: path
      required: true
      schema:
        type: integer
    - name: product_id
      description: Ürün ID
      in: path
      required: true
      schema:
        type: integer
    get:
      tags:
      - Inventory Levels
      operationId: listInventoryLevels
      summary: Index
      description: Ürünün varolan depolardaki tüm stok seviyelerini listeler.
      parameters:
      - name: filter[warehouses.name]
        in: query
        description: Sonuçların filtrelenmesini istediğiniz depo ismi.
        schema:
          type: string
      - name: filter[archived]
        in: query
        description: ''
        schema:
          type: boolean
      - name: filter[has_stock]
        in: query
        description: ''
        schema:
          type: boolean
      - name: filter[stock_count]
        in: query
        description: ''
        schema:
          type: number
      - name: sort
        in: query
        description: 'Sortable parameters - *Available: id, stock_count*'
        schema:
          type: string
          default: id
      - name: page[number]
        in: query
        description: Page Number
        schema:
          type: integer
          default: 1
      - name: page[size]
        in: query
        description: Page Size
        schema:
          type: integer
          default: 15
          maximum: 25
          minimum: 1
      - name: include
        in: query
        description: 'Response ile birlikte geri dönmesini istediğiniz ilişkiler - *Available: product, warehouse*'
        schema:
          type: string
      responses:
        '200':
          description: Depo stok seviyeleri
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/InventoryLevel'
                  included:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          maxLength: 255
                        type:
                          type: string
                          maxLength: 255
                          description: Type of the resource
                          enum:
                          - products
                          - warehouses
                        attributes:
                          type: object
                        relationships:
                          type: object
                  meta:
                    $ref: '#/components/schemas/ListMeta'
        '400':
          description: Bad Request
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
        '422':
          description: Unprocessable Entity
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        title:
          type: string
        detail:
          type: string
    InventoryLevel:
      type: object
      properties:
        id:
          type: string
          maxLength: 255
        type:
          type: string
          maxLength: 255
          description: Type of the resource
          enum:
          - inventory_levels
        attributes:
          $ref: '#/components/schemas/InventoryLevelAttributes'
        relationships:
          type: object
          properties:
            product:
              type: object
              properties:
                data:
                  type: object
                  properties:
                    id:
                      type: string
                      maxLength: 255
                    type:
                      type: string
                      maxLength: 255
                      description: Type of the resource
                      enum:
                      - products
            warehouse:
              type: object
              properties:
                data:
                  type: object
                  properties:
                    id:
                      type: string
                      maxLength: 255
                    type:
                      type: string
                      maxLength: 255
                      description: Type of the resource
                      enum:
                      - warehouses
      required:
      - attributes
    ListMeta:
      type: object
      properties:
        current_page:
          type: integer
        total_pages:
          type: integer
        total_count:
          type: integer
    InventoryLevelAttributes:
      type: object
      properties:
        created_at:
          type: string
          format: date
          readOnly: true
        updated_at:
          type: string
          format: date
          readOnly: true
        stock_count:
          type: number
          readOnly: true
          description: Stok Miktarı
        initial_stock_count:
          type: number
          readOnly: false
          description: Başlangıç Stok Miktarı
        critical_stock_count:
          type: number
          readOnly: false
  securitySchemes:
    parasut_auth:
      type: oauth2
      flows:
        authorizationCode:
          scopes: {}
          authorizationUrl: https://api.parasut.com/oauth/authorize
          tokenUrl: https://api.parasut.com/oauth/token
x-tagGroups:
- name: Satışlar
  tags:
  - SalesOffers
  - SalesInvoices
  - Contacts
- name: Giderler
  tags:
  - PurchaseBills
  - BankFees
  - Salaries
  - Taxes
  - Contacts
  - Employees
- name: Resmileştirme
  tags:
  - EInvoiceInboxes
  - EArchives
  - EInvoices
  - ESmms
- name: Nakit
  tags:
  - Accounts
  - Transactions
- name: Stok
  tags:
  - Products
  - Warehouses
  - ShipmentDocuments
  - StockMovements
  - InventoryLevels
  - StockUpdates
- name: Ayarlar
  tags:
  - ItemCategories
  - Tags
- name: Diğer
  tags:
  - ApiHome
  - TrackableJobs