Smartcat LspPrices API

The LspPrices API from Smartcat — 4 operation(s) for lspprices.

Operations 6

DELETE /api/integration/v1/lsp/prices/{priceId} Delete an LSP service price
GET /api/integration/v2/lsp/prices Fetch LSP service prices by ID
POST /api/integration/v2/lsp/prices Create a new LSP service price
GET /api/integration/v2/lsp/prices/batch Fetch LSP service prices
POST /api/integration/v2/lsp/prices/batch Create new LSP service prices
PUT /api/integration/v2/lsp/prices/{priceId} Update an existing LSP service price

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-lspprices-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-lspprices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account Lsp Prices API
  version: v1
servers:
- url: /
tags:
- name: LspPrices
paths:
  /api/integration/v1/lsp/prices/{priceId}:
    delete:
      tags:
      - LspPrices
      summary: Delete an LSP service price
      parameters:
      - name: priceId
        in: path
        description: Service price ID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
  /api/integration/v2/lsp/prices:
    get:
      tags:
      - LspPrices
      summary: Fetch LSP service prices by ID
      parameters:
      - name: priceIds
        in: query
        description: The list of service price IDs
        required: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LspPriceModelV2'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LspPriceModelV2'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LspPriceModelV2'
    post:
      tags:
      - LspPrices
      summary: Create a new LSP service price
      requestBody:
        description: Service price creation request
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/LspUpdatePriceModelV2'
          application/json:
            schema:
              $ref: '#/components/schemas/LspUpdatePriceModelV2'
          text/json:
            schema:
              $ref: '#/components/schemas/LspUpdatePriceModelV2'
          application/*+json:
            schema:
              $ref: '#/components/schemas/LspUpdatePriceModelV2'
        required: true
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: string
            application/json:
              schema:
                type: string
            text/json:
              schema:
                type: string
  /api/integration/v2/lsp/prices/batch:
    get:
      tags:
      - LspPrices
      summary: Fetch LSP service prices
      parameters:
      - name: lastPriceId
        in: query
        description: Fetch the list of service prices starting from the ID that follows the specified ID
        schema:
          type: string
      - name: limit
        in: query
        description: The required number of results (the default is 100)
        schema:
          type: integer
          format: int32
          default: 100
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LspPriceModelV2'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LspPriceModelV2'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LspPriceModelV2'
    post:
      tags:
      - LspPrices
      summary: Create new LSP service prices
      requestBody:
        description: An array of service price creation requests
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/LspUpdatePriceModelV2'
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/LspUpdatePriceModelV2'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/LspUpdatePriceModelV2'
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/LspUpdatePriceModelV2'
        required: true
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AddBatchResult'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AddBatchResult'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AddBatchResult'
  /api/integration/v2/lsp/prices/{priceId}:
    put:
      tags:
      - LspPrices
      summary: Update an existing LSP service price
      parameters:
      - name: priceId
        in: path
        description: Service price ID
        required: true
        schema:
          type: string
      requestBody:
        description: Service price update request
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/LspUpdatePriceModelV2'
          application/json:
            schema:
              $ref: '#/components/schemas/LspUpdatePriceModelV2'
          text/json:
            schema:
              $ref: '#/components/schemas/LspUpdatePriceModelV2'
          application/*+json:
            schema:
              $ref: '#/components/schemas/LspUpdatePriceModelV2'
        required: true
      responses:
        '200':
          description: OK
components:
  schemas:
    AddBatchResult:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: ID of a created entity
        index:
          type: integer
          description: ID of an entity assigned upon its addition to a batch
          format: int32
        success:
          type: boolean
          description: Entity was successfully created
      additionalProperties: false
      description: Entity creation result model for batch addition
    LspUpdatePriceModelV2:
      type: object
      properties:
        serviceId:
          type:
          - string
          - 'null'
          description: Service ID
        clientId:
          type:
          - string
          - 'null'
          description: Client ID
          format: uuid
        sourceLanguage:
          type:
          - string
          - 'null'
          description: Source language
        targetLanguages:
          type:
          - array
          - 'null'
          items:
            type: string
          description: Target languages
        pricePerUnit:
          type:
          - number
          - 'null'
          description: Price per unit
          format: double
        pricePerUnitCurrency:
          type:
          - string
          - 'null'
          description: Price currency
      additionalProperties: false
      description: LSP service price creation and update model
    LspPriceModelV2:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: Price ID
        serviceId:
          type:
          - string
          - 'null'
          description: Service ID
        clientId:
          type:
          - string
          - 'null'
          description: Client ID
          format: uuid
        sourceLanguage:
          type:
          - string
          - 'null'
          description: Source language
        targetLanguages:
          type:
          - array
          - 'null'
          items:
            type: string
          description: Target languages
        pricePerUnit:
          type:
          - number
          - 'null'
          description: Price per unit
          format: double
        pricePerUnitCurrency:
          type:
          - string
          - 'null'
          description: Price currency
      additionalProperties: false
      description: LSP service price model