Smartcat Vendor API

The Vendor API from Smartcat — 2 operation(s) for vendor.

Operations 2

GET /api/integration/v1/vendor/list Fetch the list of vendors
GET /api/integration/v1/vendor/{vendorAccountId} Fetch a vendor by ID

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/smartcat-vendor-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

smartcat-vendor-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account Vendor API
  version: v1
servers:
- url: /
tags:
- name: Vendor
paths:
  /api/integration/v1/vendor/list:
    get:
      tags:
      - Vendor
      summary: Fetch the list of vendors
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VendorModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VendorModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VendorModel'
  /api/integration/v1/vendor/{vendorAccountId}:
    get:
      tags:
      - Vendor
      summary: Fetch a vendor by ID
      parameters:
      - name: vendorAccountId
        in: path
        description: Vendor IDVendor ID
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/VendorModel'
            application/json:
              schema:
                $ref: '#/components/schemas/VendorModel'
            text/json:
              schema:
                $ref: '#/components/schemas/VendorModel'
        '400':
          description: The specified vendor ID's format is incorrect
        '404':
          description: The provided vendor ID does not exist or the vendor is not associated with the account
components:
  schemas:
    VendorModel:
      type: object
      properties:
        id:
          type: string
          description: ID
          format: uuid
        name:
          type:
          - string
          - 'null'
          description: Company name
        customFields:
          type:
          - object
          - 'null'
          additionalProperties:
            type:
            - string
            - 'null'
          description: Custom fields
      additionalProperties: false
      description: Vendor model