Invendor UniqueItems API

The UniqueItems API from Invendor — 3 operation(s) for uniqueitems.

Operations 3

GET /api/v1/UniqueItems/tools Get status of all the tools in the system for defined period
GET /api/v1/UniqueItems/rent Get status of all the rent items in the system for defined period
GET /api/v1/UniqueItems/statuses Get the current status snapshot for every unique item, scoped to caller's accessible locations.

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/invendor-uniqueitems-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

invendor-uniqueitems-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IO.Common Accounts Unique Items API
  version: '1.0'
servers:
- url: https://api.invendor.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- OAuth2: []
tags:
- name: UniqueItems
paths:
  /api/v1/UniqueItems/tools:
    get:
      tags:
      - UniqueItems
      summary: Get status of all the tools in the system for defined period
      parameters:
      - name: dateFrom
        in: query
        schema:
          type: string
          format: date-time
      - name: dateTo
        in: query
        schema:
          type: string
          format: date-time
      - name: status
        in: query
        schema:
          type: string
          default: ''
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ItemStatusRowDTO'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
  /api/v1/UniqueItems/rent:
    get:
      tags:
      - UniqueItems
      summary: Get status of all the rent items in the system for defined period
      parameters:
      - name: dateFrom
        in: query
        schema:
          type: string
          format: date-time
      - name: dateTo
        in: query
        schema:
          type: string
          format: date-time
      - name: status
        in: query
        schema:
          type: string
          default: ''
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ItemStatusRowDTO'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
  /api/v1/UniqueItems/statuses:
    get:
      tags:
      - UniqueItems
      summary: Get the current status snapshot for every unique item, scoped to caller's accessible locations.
      parameters:
      - name: locationId
        in: query
        schema:
          type: integer
          format: int32
      - name: statusId
        in: query
        schema:
          type: integer
          format: int32
      - name: genericStatus
        in: query
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UniqueItemCurrentStatusRowDTO'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - OAuth2:
        - io.reporting
components:
  schemas:
    ItemStatusRowDTO:
      type: object
      properties:
        itemId:
          type: integer
          format: int32
        itemCode:
          type:
          - string
          - 'null'
        itemName:
          type:
          - string
          - 'null'
        imageUrl:
          type:
          - array
          - 'null'
          items:
            type: string
        locationId:
          type: integer
          format: int32
        location:
          type:
          - string
          - 'null'
        vendor:
          type:
          - string
          - 'null'
        metadata:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/MetadataDTO'
        sessionId:
          type: integer
          format: int32
        scanEventId:
          type: integer
          format: int32
        datetime:
          type: string
          format: date-time
        returnDatetime:
          type:
          - string
          - 'null'
          format: date-time
        operationId:
          type: integer
          format: int32
        operation:
          type:
          - string
          - 'null'
        status:
          type:
          - string
          - 'null'
        itemType:
          type:
          - string
          - 'null'
        currentUserId:
          type: integer
          format: int32
        currentUser:
          type:
          - string
          - 'null'
        currentUserFirstName:
          type:
          - string
          - 'null'
        currentUserLastName:
          type:
          - string
          - 'null'
        currentUserFullName:
          type:
          - string
          - 'null'
        previousUserId:
          type:
          - integer
          - 'null'
          format: int32
        previousUser:
          type:
          - string
          - 'null'
        previousUserFirstName:
          type:
          - string
          - 'null'
        previousUserLastName:
          type:
          - string
          - 'null'
        previousUserFullName:
          type:
          - string
          - 'null'
        itemProperties:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PropertyDTO'
      additionalProperties: false
    PropertyDTO:
      type: object
      properties:
        key:
          type:
          - string
          - 'null'
        value:
          type:
          - string
          - 'null'
      additionalProperties: false
    UniqueItemCurrentStatusRowDTO:
      type: object
      properties:
        itemId:
          type: integer
          format: int32
        itemCode:
          type:
          - string
          - 'null'
        itemName:
          type:
          - string
          - 'null'
        itemImage:
          type:
          - string
          - 'null'
        statusId:
          type:
          - integer
          - 'null'
          format: int32
        statusName:
          type:
          - string
          - 'null'
        genericStatus:
          type:
          - integer
          - 'null'
          format: int32
        locationId:
          type:
          - integer
          - 'null'
          format: int32
        location:
          type:
          - string
          - 'null'
        wmsLocationId:
          type:
          - string
          - 'null'
        lastUserId:
          type:
          - integer
          - 'null'
          format: int32
        lastUserName:
          type:
          - string
          - 'null'
        lastUserFirstName:
          type:
          - string
          - 'null'
        lastUserLastName:
          type:
          - string
          - 'null'
        lastTransDate:
          type:
          - string
          - 'null'
          format: date-time
        scanEventId:
          type:
          - integer
          - 'null'
          format: int32
        sessionId:
          type:
          - integer
          - 'null'
          format: int32
        sessionGlobalId:
          type:
          - string
          - 'null'
          format: uuid
        sessionCloseTime:
          type:
          - string
          - 'null'
          format: date-time
        operationId:
          type:
          - integer
          - 'null'
          format: int32
        operation:
          type:
          - string
          - 'null'
        metadata:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/MetadataDTO'
        itemProperties:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/PropertyDTO'
        itemDefaultImage:
          type:
          - string
          - 'null'
      additionalProperties: false
    Error:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
        message:
          type:
          - string
          - 'null'
      additionalProperties: false
    MetadataDTO:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        shortName:
          type:
          - string
          - 'null'
        value:
          type:
          - string
          - 'null'
        dimensionId:
          type: integer
          format: int32
      additionalProperties: false
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://identity.scanbro.com/connect/authorize
          tokenUrl: https://identity.scanbro.com/connect/token
          scopes:
            io.common: default scope