LabVantage Solutions Containers API

Sample containers and storage management

Operations 1

GET /containers List containers #

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/labvantage-containers-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

labvantage-containers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LabVantage LIMS Containers API
  description: LabVantage LIMS (Laboratory Information Management System) REST API for sample management, test result recording, instrument integration, and regulatory compliance data exchange. Supports GxP-compliant workflows for pharmaceutical, biotech, and clinical laboratory environments. The LabVantage REST API provides access to samples, tests, results, containers, and laboratory schedules via JSON over HTTPS.
  version: 8.8.0
  contact:
    name: LabVantage Customer Care
    url: https://www.labvantage.com/services/customer-care/
  license:
    name: LabVantage License
    url: https://www.labvantage.com/privacy-policy/
servers:
- url: https://{instance}.labvantage.example.com/labvantage/rest/v1
  description: LabVantage LIMS REST API
  variables:
    instance:
      default: yourlab
      description: LabVantage instance hostname prefix
security:
- BasicAuth: []
- BearerAuth: []
tags:
- name: Containers
  description: Sample containers and storage management
paths:
  /containers:
    get:
      operationId: listContainers
      summary: List containers
      description: Returns sample containers in the LIMS with optional filtering by location, sample, and container type.
      tags:
      - Containers
      parameters:
      - name: sampleId
        in: query
        schema:
          type: string
      - name: locationId
        in: query
        schema:
          type: string
      - name: containerType
        in: query
        schema:
          type: string
      - name: pageSize
        in: query
        schema:
          type: integer
          default: 25
      responses:
        '200':
          description: Containers returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContainerList'
components:
  schemas:
    Container:
      type: object
      properties:
        containerId:
          type: string
        containerType:
          type: string
        sampleId:
          type: string
        label:
          type: string
        barcode:
          type: string
        locationId:
          type: string
        quantity:
          type: number
        quantityUnit:
          type: string
        status:
          type: string
          enum:
          - Active
          - Empty
          - Disposed
        createdDate:
          type: string
          format: date-time
    ContainerList:
      type: object
      properties:
        containers:
          type: array
          items:
            $ref: '#/components/schemas/Container'
        total:
          type: integer
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication (username:password)
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token authentication
externalDocs:
  description: LabVantage Documentation
  url: https://www.labvantage.com/