Smartcat Directories API

The Directories API from Smartcat — 2 operation(s) for directories.

Operations 2

GET /api/integration/v2/directory Fetch the specified directory
GET /api/integration/v1/directory/formats Fetch parsing formats supported by the account

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-directories-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-directories-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account Directories API
  version: v1
servers:
- url: /
tags:
- name: Directories
paths:
  /api/integration/v2/directory:
    get:
      tags:
      - Directories
      summary: Fetch the specified directory
      parameters:
      - name: type
        in: query
        description: Directory type
        required: true
        schema:
          $ref: '#/components/schemas/DirectoryType'
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/DirectoryModel'
            application/json:
              schema:
                $ref: '#/components/schemas/DirectoryModel'
            text/json:
              schema:
                $ref: '#/components/schemas/DirectoryModel'
        '400':
          description: Returns if an incorrect directory type is provided
  /api/integration/v1/directory/formats:
    get:
      tags:
      - Directories
      summary: Fetch parsing formats supported by the account
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FileFormatModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FileFormatModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FileFormatModel'
        '404':
          description: Unable to find an account connected to the integration API
components:
  schemas:
    FileFormatModel:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
          description: File formats supported by the account
        ocr:
          type: boolean
          description: Specifies whether the OCR format is supported
        mime-type:
          type:
          - string
          - 'null'
          description: Data type (MIME)
        disassembleAlgorithmName:
          type:
          - string
          - 'null'
          description: Disassemble algorithm name
      additionalProperties: false
      description: Model of file formats supported by the account
    DirectoryItemModel:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: ID
        name:
          type:
          - string
          - 'null'
          description: Name
      additionalProperties: false
      description: Directory entry model
    DirectoryType:
      enum:
      - language
      - vendor
      - domain
      - client
      - group
      - projectStatus
      - documentStatus
      - netRate
      - currency
      - freelancerServiceType
      - specialization
      - specializationKnowledgeLevel
      - lspServiceType
      - jobStatus
      - country
      - supplierType
      - workUnitType
      - translationAssuranceLevel
      type: string
      description: Directory type
      format: int32
    DirectoryModel:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/DirectoryType'
        items:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/DirectoryItemModel'
          description: Elements
      additionalProperties: false
      description: Directory model