Smartcat Job API

The Job API from Smartcat — 2 operation(s) for job.

Operations 2

GET /api/integration/v3/job/verifiedForProject Fetch an array of jobs whose status is VERIFIED
GET /api/integration/v3/job Fetch an array of jobs

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-job-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-job-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Smartcat Account Job API
  version: v1
servers:
- url: /
tags:
- name: Job
paths:
  /api/integration/v3/job/verifiedForProject:
    get:
      tags:
      - Job
      summary: Fetch an array of jobs whose status is VERIFIED
      parameters:
      - name: projectId
        in: query
        description: Project ID
        required: true
        schema:
          type: string
          format: uuid
      - name: skip
        in: query
        description: 'Number of jobs to be skipped (default: 0)'
        schema:
          type: integer
          format: int32
          default: 0
      - name: limit
        in: query
        description: 'Number of jobs to fetch (default: 100)'
        schema:
          type: integer
          format: int32
          default: 100
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobModelV2Extended'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobModelV2Extended'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobModelV2Extended'
  /api/integration/v3/job:
    get:
      tags:
      - Job
      summary: Fetch an array of jobs
      parameters:
      - name: projectId
        in: query
        description: Project ID
        required: true
        schema:
          type: string
          format: uuid
      - name: skip
        in: query
        description: 'Number of jobs to be skipped (default: 0)'
        schema:
          type: integer
          format: int32
          default: 0
      - name: limit
        in: query
        description: 'Number of jobs to fetch (default: 100)'
        schema:
          type: integer
          format: int32
          default: 100
      responses:
        '200':
          description: Request has been successfully completed
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobModelV2Extended'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobModelV2Extended'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobModelV2Extended'
components:
  schemas:
    JobStatus:
      enum:
      - inProgress
      - invitationPending
      - waitingForAssignment
      - waitingForPayment
      - verified
      - paidByCustomer
      - paidToFreelancer
      - markedAsPaid
      - invitationCanceled
      - invitationDeclined
      type: string
      description: Payment status
      format: int32
    SupplierType:
      enum:
      - freelancer
      - company
      type: string
      description: Supplier type
      format: int32
    JobModelV2Extended:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
          description: Task ID
        invoiceNumber:
          type:
          - string
          - 'null'
          description: Bank account number
        supplierEmail:
          type:
          - string
          - 'null'
          description: Vendor email address
        supplierName:
          type:
          - string
          - 'null'
          description: Vendor name
        supplierType:
          $ref: '#/components/schemas/SupplierType'
        serviceType:
          type:
          - string
          - 'null'
          description: Service type
        jobDescription:
          type:
          - string
          - 'null'
          description: 'Description: the name of a document or project'
        unitsType:
          type:
          - string
          - 'null'
          description: Job unit type
        unitsAmount:
          type: number
          description: Job unit count
          format: double
        customerPricePerUnit:
          type: number
          description: Job unit price
          format: double
        executivePricePerUnit:
          type: number
          description: Job unit price without commission
          format: double
        customerCurrency:
          type:
          - string
          - 'null'
          description: Price and cost currency
        executiveCurrency:
          type:
          - string
          - 'null'
          description: Linguist's price and cost currency
        customerCost:
          type: number
          description: Total job cost
          format: double
        executiveCost:
          type: number
          description: Total job cost without commission
          format: double
        externalNumber:
          type:
          - string
          - 'null'
          description: External payment ID
        supplierId:
          type:
          - string
          - 'null'
          description: Supplier ID
          format: uuid
        status:
          $ref: '#/components/schemas/JobStatus'
        projectId:
          type:
          - string
          - 'null'
          description: Project ID
          format: uuid
        deadline:
          type:
          - string
          - 'null'
          description: Project deadline
          format: date-time
        sourceLanguage:
          type:
          - integer
          - 'null'
          description: Source language
          format: int32
        targetLanguage:
          type:
          - integer
          - 'null'
          description: Target language
          format: int32
        isPaidExternally:
          type: boolean
          description: Paid externally
        documentId:
          type:
          - string
          - 'null'
          description: Document ID
        stageId:
          type:
          - string
          - 'null'
          description: Workflow stage ID
        verifiedDate:
          type:
          - string
          - 'null'
          description: The date the job status was set to VERIFIED.
          format: date-time
      additionalProperties: false
      description: Payment model