VCV

VCV limits API

The limits API from VCV — 1 operation(s) for limits.

Operations 2

GET /api/v3/company-limits
PATCH /api/v3/company-limits

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/vcv-limits-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

vcv-limits-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VCV chatbot Limits API
  description: open api
  version: v3
servers:
- url: https://my.vcv.ai
- url: https://my.vcv.ru
- url: '{hostname}'
  variables:
    hostname:
      default: http://localhost:8080
security:
- bearerAuth: []
tags:
- name: limits
paths:
  /api/v3/company-limits:
    get:
      description: Get company limits
      tags:
      - limits
      parameters:
      - name: company_id
        in: path
        description: Company id
        required: true
        schema:
          type: integer
      - name: fields[]
        in: query
        description: Additional fields
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - vacancyCount
            - userCount
      responses:
        '200':
          description: Limits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyLimits'
    patch:
      description: Update company limits
      tags:
      - limits
      parameters:
      - name: company_id
        in: path
        description: company id
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                vacancy_limit:
                  type:
                  - integer
                  - 'null'
                response_limit:
                  type:
                  - integer
                  - 'null'
                response_balance:
                  type:
                  - integer
                  - 'null'
                paid_from:
                  type:
                  - string
                  - 'null'
                  format: date-time
                paid_to:
                  type:
                  - string
                  - 'null'
                  format: date-time
                company_id:
                  type: integer
                sms_balance:
                  type: integer
                is_sms_unlimited:
                  type: boolean
                is_sms_enabled:
                  type: boolean
                action_history:
                  type: boolean
                analytics:
                  type: boolean
                api:
                  type: boolean
                basic_test:
                  type: boolean
                chatbot:
                  type: boolean
                competences:
                  type: boolean
                custom_agreements:
                  type: boolean
                emotions:
                  type: boolean
                extended_test:
                  type: boolean
                fullhd_response_balance:
                  type:
                  - integer
                  - 'null'
                hd_response_balance:
                  type:
                  - integer
                  - 'null'
                integration:
                  type: boolean
                extra_response_balance:
                  type: integer
                password_policy:
                  type: boolean
                personal_manager:
                  type: boolean
                responses_lifetime:
                  type: integer
                survey:
                  type: boolean
                survey_screening:
                  type: boolean
                vacancy_permissions:
                  type: boolean
                videointerview:
                  type: boolean
              type: object
      responses:
        '200':
          description: Updated company limits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyLimits'
components:
  schemas:
    CompanyLimits:
      properties:
        id:
          type: integer
        date_created:
          type: string
          format: date-time
        active:
          type: boolean
        user_id:
          type: integer
        vacancy_limit:
          type:
          - integer
          - 'null'
        response_limit:
          type:
          - integer
          - 'null'
        response_balance:
          type:
          - integer
          - 'null'
        paid_from:
          type:
          - string
          - 'null'
          format: date-time
        paid_to:
          type:
          - string
          - 'null'
          format: date-time
        company_id:
          type: integer
        save_no_paid_responses:
          type: boolean
        paid_at:
          type:
          - string
          - 'null'
          format: date-time
        sms_balance:
          type: integer
        is_sms_unlimited:
          type: boolean
        is_sms_enabled:
          type: boolean
        userCount:
          type:
          - integer
          - 'null'
        vacancyCount:
          type:
          - integer
          - 'null'
        latestLog:
          type: object
          properties:
            id:
              type: integer
            company_limits_id:
              type: integer
            date_create:
              type: string
            response_paid_count:
              type: integer
            response_limit:
              type: integer
            active:
              type: boolean
        action_history:
          type: boolean
        analytics:
          type: boolean
        api:
          type: boolean
        basic_test:
          type: boolean
        chatbot:
          type: boolean
        competences:
          type: boolean
        custom_agreements:
          type: boolean
        emotions:
          type: boolean
        extended_test:
          type: boolean
        fullhd_response_balance:
          type:
          - integer
          - 'null'
        hd_response_balance:
          type:
          - integer
          - 'null'
        integration:
          type: boolean
        extra_response_balance:
          type: integer
        password_policy:
          type: boolean
        personal_manager:
          type: boolean
        responses_lifetime:
          type: integer
        survey:
          type: boolean
        survey_screening:
          type: boolean
        vacancy_permissions:
          type: boolean
        videointerview:
          type: boolean
      type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token