Aquant Part Sources API

The Part Sources API from Aquant — 1 operation(s) for part sources.

Operations 1

POST /part-sources Part Sources #

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-sources-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-sources-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aquant MCP Server Part Sources API
  version: 1.0.0
tags:
- name: Part Sources
paths:
  /part-sources:
    post:
      summary: Part Sources
      description: "Retrieve sources for parts given catalog data, model, and question.\n\nArgs:\n    payload: The request body containing catalog_data, model, and question.\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_sources
      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/PartSourcesRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartSourcesResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Part Sources
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
    PartSourcesResult:
      properties:
        status:
          type: string
          title: Status
        message:
          type: string
          title: Message
        sources:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Sources
          default: []
      type: object
      required:
      - status
      title: PartSourcesResult
    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
    PartSourcesRequest:
      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.
        model:
          type: string
          title: Model
          description: The model name for the part sources tool.
        question:
          type: string
          title: Question
          description: The user question to match against sources.
      type: object
      required:
      - catalog_data
      - model
      - question
      title: PartSourcesRequest