VCV

VCV companies API

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

Operations 1

GET /api/v3/companies/search

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-companies-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-companies-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VCV chatbot Companies 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: companies
paths:
  /api/v3/companies/search:
    get:
      description: Get companies list with search and pagination
      tags:
      - companies
      parameters:
      - name: page
        in: query
        description: page number
        required: false
        schema:
          type: integer
          default: 1
      - name: limit
        in: query
        description: page size
        required: false
        schema:
          type: integer
          default: 20
      - name: sort[order]
        in: query
        description: sort order
        required: false
        schema:
          type: string
          default: desc
          enum:
          - asc
          - desc
      - name: sort[by]
        in: query
        description: Sort field
        required: false
        schema:
          type: string
          default: id
          enum:
          - id
          - name
          - date_created
          - active
      - name: filter[id]
        in: query
        description: Company ID filter
        required: false
        schema:
          type: integer
      - name: filter[name]
        in: query
        description: Company name filter (partial match)
        required: false
        schema:
          type: string
      - name: filter[active]
        in: query
        description: Company active status filter
        required: false
        schema:
          type: boolean
      - name: with[]
        in: query
        description: Relations to retrieve
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - limits
            - geo
            - language
            - responseStatuses
      responses:
        '200':
          description: List of companies
          content:
            application/json:
              schema:
                properties:
                  _total_items:
                    type: integer
                  _page:
                    type: integer
                  _page_count:
                    type: integer
                  _links:
                    properties:
                      self:
                        type: object
                        properties:
                          href:
                            type: string
                            format: uri
                      next:
                        type: object
                        properties:
                          href:
                            type: string
                            format: uri
                      last:
                        type: object
                        properties:
                          href:
                            type: string
                            format: uri
                    type: object
                  _embedded:
                    type: object
                    properties:
                      companies:
                        type: array
                        items:
                          allOf:
                          - type: object
                            properties:
                              id:
                                type: integer
                              date_created:
                                type: string
                                format: date-time
                              active:
                                type: boolean
                              name:
                                type: string
                              phone:
                                type:
                                - string
                                - 'null'
                              geo_id:
                                type:
                                - integer
                                - 'null'
                              language_id:
                                type:
                                - integer
                                - 'null'
                              company_source_id:
                                type:
                                - integer
                                - 'null'
                              time_format:
                                type:
                                - string
                                - 'null'
                              domain_prefix:
                                type:
                                - string
                                - 'null'
                              domain_prefix_previous:
                                type:
                                - string
                                - 'null'
                              logo_url:
                                type:
                                - string
                                - 'null'
                              invite_logo_url:
                                type:
                                - string
                                - 'null'
                              is_permanent_response_link:
                                type: boolean
                              is_test:
                                type: boolean
                              is_approval_needed:
                                type: boolean
                              is_videoresume:
                                type: boolean
                              is_onboarding_enabled:
                                type: boolean
                              is_password_expiry:
                                type: boolean
                              is_unique_password:
                                type: boolean
                              expired_at:
                                type:
                                - string
                                - 'null'
                                format: date-time
                          - type: object
                            properties:
                              limits:
                                type: object
                                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'
                                  company_id:
                                    type: integer
                              geo:
                                type: object
                                properties:
                                  id:
                                    type: integer
                                  name:
                                    type: string
                                  code:
                                    type: string
                              language:
                                type: object
                                properties:
                                  id:
                                    type: integer
                                  name:
                                    type: string
                                  code:
                                    type: string
                              responseStatuses:
                                type: array
                                items:
                                  type: object
                                  properties:
                                    id:
                                      type: integer
                                    name:
                                      type: string
                                    color:
                                      type: string
                                    company_id:
                                      type: integer
                type: object
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token