Smartcat ClientIndustry API

The ClientIndustry API from Smartcat — 3 operation(s) for clientindustry.

Operations 5

GET /api/integration/v1/clientIndustry/{id} Fetch a directory entry by ID
PUT /api/integration/v1/clientIndustry/{id} Update the name of an entry by ID
DELETE /api/integration/v1/clientIndustry/{id} Delete a list entry
GET /api/integration/v1/clientIndustry Fetch all the available directory values
POST /api/integration/v1/clientIndustry/{name} Add a directory entry

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-clientindustry-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-clientindustry-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account Client Industry API
  version: v1
servers:
- url: /
tags:
- name: ClientIndustry
paths:
  /api/integration/v1/clientIndustry/{id}:
    get:
      tags:
      - ClientIndustry
      summary: Fetch a directory entry by ID
      parameters:
      - name: id
        in: path
        description: Directory entry ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ClientIndustryModel'
            application/json:
              schema:
                $ref: '#/components/schemas/ClientIndustryModel'
            text/json:
              schema:
                $ref: '#/components/schemas/ClientIndustryModel'
    put:
      tags:
      - ClientIndustry
      summary: Update the name of an entry by ID
      parameters:
      - name: id
        in: path
        description: Entry ID
        required: true
        schema:
          type: string
      - name: name
        in: query
        description: New entry name
        schema:
          type: string
      responses:
        '204':
          description: No Content
    delete:
      tags:
      - ClientIndustry
      summary: Delete a list entry
      parameters:
      - name: id
        in: path
        description: Entry ID
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
  /api/integration/v1/clientIndustry:
    get:
      tags:
      - ClientIndustry
      summary: Fetch all the available directory values
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ClientIndustryModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ClientIndustryModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ClientIndustryModel'
  /api/integration/v1/clientIndustry/{name}:
    post:
      tags:
      - ClientIndustry
      summary: Add a directory entry
      parameters:
      - name: name
        in: path
        description: Entry name
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: string
            application/json:
              schema:
                type: string
            text/json:
              schema:
                type: string
components:
  schemas:
    ClientIndustryModel:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: Directory entry ID
        name:
          type:
          - string
          - 'null'
          description: List entry value
      additionalProperties: false
      description: Model of an entry in a client's specializations list