Aquant Part Info API

The Part Info API from Aquant — 1 operation(s) for part info.

Operations 1

POST /part-info Part Info #

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/aquant-part-info-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

aquant-part-info-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aquant MCP Server Part Info API
  version: 1.0.0
tags:
- name: Part Info
paths:
  /part-info:
    post:
      summary: Part Info
      description: "Retrieve detailed part information given catalog data from the lookup tool.\n\nArgs:\n    payload: The request body containing catalog_data.\n    tenant_id: [TEMPORARY] The tenant ID. This should be removed in the future.\n    db_session: Mock database session (ready for future replacement with real DB)"
      operationId: part_info
      parameters:
      - name: tenant_id
        in: query
        required: true
        schema:
          type: string
          description: '[TEMPORARY] The tenant ID. This should be removed in the future.'
          title: Tenant Id
        description: '[TEMPORARY] The tenant ID. This should be removed in the future.'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PartInfoRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartInfoResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Part Info
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PartInfoRequest:
      properties:
        catalog_data:
          items:
            $ref: '#/components/schemas/PartCatalogInfo'
          type: array
          title: Catalog Data
          description: List of part catalog info objects from the catalog lookup tool.
      type: object
      required:
      - catalog_data
      title: PartInfoRequest
    PartInfoResult:
      properties:
        status:
          type: string
          title: Status
        message:
          type: string
          title: Message
        part_info:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Part Info
          default: []
      type: object
      required:
      - status
      title: PartInfoResult
    PartCatalogInfo:
      properties:
        part_id:
          type: string
          title: Part Id
        part_name:
          type: string
          title: Part Name
        part_description:
          type: string
          title: Part Description
        part_image_link:
          type: string
          title: Part Image Link
        part_url_link:
          type: string
          title: Part Url Link
      type: object
      required:
      - part_id
      title: PartCatalogInfo