Smartcat Account API

The Account API from Smartcat — 2 operation(s) for account.

Operations 2

GET /api/integration/v1/account Fetch the account details
GET /api/integration/v1/account/mtengines Fetch the list of MT services available for 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-account-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-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account API
  version: v1
servers:
- url: /
tags:
- name: Account
paths:
  /api/integration/v1/account:
    get:
      tags:
      - Account
      summary: Fetch the account details
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/AccountModel'
            application/json:
              schema:
                $ref: '#/components/schemas/AccountModel'
            text/json:
              schema:
                $ref: '#/components/schemas/AccountModel'
        '404':
          description: Unable to find an account connected to the integration API
  /api/integration/v1/account/mtengines:
    get:
      tags:
      - Account
      summary: Fetch the list of MT services available for the account
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MTEngineModel'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MTEngineModel'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MTEngineModel'
components:
  schemas:
    MTEngineModel:
      type: object
      properties:
        id:
          type: string
          description: ID
          format: uuid
        name:
          type:
          - string
          - 'null'
          description: MT engine name
      additionalProperties: false
      description: MT (Machine Translation) engine model
    EndCustomerValue:
      enum:
      - lowValue
      - enterprise
      - sMB
      - corporate
      - university
      - government
      - strategic
      - smallBusiness
      - midmarket
      - anonymous
      type: string
      format: int32
    AccountModel:
      type: object
      properties:
        id:
          type: string
          description: ID
          format: uuid
        name:
          type:
          - string
          - 'null'
          description: Name
        description:
          type:
          - string
          - 'null'
          description: Description
        isPersonal:
          type: boolean
          description: Specifies whether it is the user's personal account
        type:
          type:
          - string
          - 'null'
          description: Account type
        endCustomerValue:
          $ref: '#/components/schemas/EndCustomerValue'
        dateCreated:
          type: string
          description: Creation date
          format: date-time
        interInstallationAccountId:
          type: string
          description: Account ID for interacting with resources shared between installations
          format: uuid
        createdByUserId:
          type:
          - string
          - 'null'
          description: User ID who created the account
        organizationId:
          type:
          - string
          - 'null'
          description: Organization ID to which the account belongs
          format: uuid
        isDisabled:
          type: boolean
          description: Attribute of "disabled" personal account
      additionalProperties: false
      description: Account information for external systems