VCV

VCV survey API

The survey API from VCV — 4 operation(s) for survey.

Operations 5

GET /api/v3/surveys/templates
GET /api/v3/surveys/templates/{id}
PATCH /api/v3/surveys/templates/{id}
GET /api/v3/surveys
GET /api/v3/surveys/{id}

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-survey-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-survey-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VCV chatbot Survey 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: survey
paths:
  /api/v3/surveys/templates:
    get:
      description: Get survey templates list
      tags:
      - survey
      parameters:
      - $ref: '#/components/parameters/pagination_page'
      - $ref: '#/components/parameters/pagination_page_size'
      - name: with[]
        in: query
        description: Relations to retrieve
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - questions
            - questions.answers
      - $ref: '#/components/parameters/filter_id'
      - $ref: '#/components/parameters/filter_vacancy_id'
      - $ref: '#/components/parameters/filter_created_at_from'
      - $ref: '#/components/parameters/filter_created_at_to'
      responses:
        '200':
          description: list of survey templates
          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:
                      survey_templates:
                        type: array
                        items:
                          allOf:
                          - $ref: '#/components/schemas/SurveyTemplate'
                          - type: object
                            properties:
                              _embedded:
                                type: object
                                properties:
                                  questions:
                                    type: array
                                    items:
                                      allOf:
                                      - $ref: '#/components/schemas/SurveyTemplateQuestion'
                                      - type: object
                                        properties:
                                          _embedded:
                                            type: object
                                            properties:
                                              answers:
                                                type: array
                                                items:
                                                  $ref: '#/components/schemas/SurveyTemplateAnswer'
                type: object
  /api/v3/surveys/templates/{id}:
    get:
      description: Get survey template detail
      tags:
      - survey
      parameters:
      - name: id
        in: path
        description: Id
        required: true
        schema:
          type: integer
      - name: with[]
        in: query
        description: Relations to retrieve
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - questions
            - questions.answers
      responses:
        '200':
          description: Detail survey template
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/SurveyTemplate'
                - type: object
                  properties:
                    _embedded:
                      type: object
                      properties:
                        questions:
                          type: array
                          items:
                            allOf:
                            - $ref: '#/components/schemas/SurveyTemplateQuestion'
                            - type: object
                              properties:
                                _embedded:
                                  type: object
                                  properties:
                                    answers:
                                      type: array
                                      items:
                                        $ref: '#/components/schemas/SurveyTemplateAnswer'
    patch:
      description: Update survey template detail
      tags:
      - survey
      parameters:
      - name: id
        in: path
        description: Id
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                name:
                  type: string
                description:
                  type: string
                questions:
                  type: array
                  items:
                    type: object
                    properties:
                      id:
                        type:
                        - integer
                        - 'null'
                      type:
                        type: string
                      sort_order:
                        type: integer
                      is_indicated_dates:
                        type: boolean
                      is_required:
                        type: boolean
                      dropout_date_max:
                        type:
                        - string
                        - 'null'
                        format: date-time
                      dropout_date_min:
                        type:
                        - string
                        - 'null'
                        format: date-time
                      answers:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type:
                              - integer
                              - 'null'
                            type:
                              type: string
                            content:
                              type: string
                            sort_order:
                              type: integer
                            is_dropout:
                              type: boolean
              type: object
      responses:
        '200':
          description: Detail survey template
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SurveyTemplate'
  /api/v3/surveys:
    get:
      description: Get response surveys list
      tags:
      - survey
      parameters:
      - $ref: '#/components/parameters/pagination_page'
      - $ref: '#/components/parameters/pagination_page_size'
      - $ref: '#/components/parameters/filter_vacancy_id'
      - name: with[]
        in: query
        description: Relations to retrieve
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - questions
            - questions.answers
            - questions.record
      - $ref: '#/components/parameters/filter_id'
      - $ref: '#/components/parameters/filter_response_id'
      - $ref: '#/components/parameters/filter_created_at_from'
      - $ref: '#/components/parameters/filter_created_at_to'
      responses:
        '200':
          description: list of response surveys
          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:
                      surveys:
                        type: array
                        items:
                          allOf:
                          - $ref: '#/components/schemas/Survey'
                          - type: object
                            properties:
                              _embedded:
                                type: object
                                properties:
                                  questions:
                                    type: array
                                    items:
                                      allOf:
                                      - $ref: '#/components/schemas/SurveyQuestion'
                                      - type: object
                                        properties:
                                          _embedded:
                                            type: object
                                            properties:
                                              record:
                                                $ref: '#/components/schemas/SurveyRecord'
                                              answers:
                                                type: array
                                                items:
                                                  $ref: '#/components/schemas/SurveyAnswer'
                type: object
  /api/v3/surveys/{id}:
    get:
      description: Get response survey detail
      tags:
      - survey
      parameters:
      - name: id
        in: path
        description: Id
        required: true
        schema:
          type: integer
      - name: with[]
        in: query
        description: Relations to retrieve
        required: false
        schema:
          type: array
          items:
            type: string
            enum:
            - questions
            - questions.answers
            - questions.record
      responses:
        '200':
          description: response survey
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/Survey'
                - type: object
                  properties:
                    _embedded:
                      type: object
                      properties:
                        questions:
                          type: array
                          items:
                            allOf:
                            - $ref: '#/components/schemas/SurveyQuestion'
                            - type: object
                              properties:
                                _embedded:
                                  type: object
                                  properties:
                                    record:
                                      $ref: '#/components/schemas/SurveyRecord'
                                    answers:
                                      type: array
                                      items:
                                        $ref: '#/components/schemas/SurveyAnswer'
components:
  schemas:
    SurveyTemplateAnswer:
      properties:
        id:
          type: integer
        date_created:
          type: string
          format: date-time
        question_id:
          type: integer
        type:
          type: string
        content:
          type: string
        sort_order:
          type: integer
        is_dropout:
          type: boolean
      type: object
    SurveyQuestion:
      properties:
        id:
          type: integer
        date_created:
          type: string
          format: date-time
        survey_id:
          type: integer
        name:
          type: string
        type:
          type: string
        font_style:
          type:
          - string
          - 'null'
        description:
          type: string
        sort_order:
          type: integer
        is_indicated_dates:
          type: boolean
        is_required:
          type: boolean
        dropout_date_min:
          type:
          - string
          - 'null'
          format: date-time
        dropout_date_max:
          type:
          - string
          - 'null'
          format: date-time
      type: object
    SurveyAnswer:
      properties:
        id:
          type: integer
        date_created:
          type: string
          format: date-time
        question_id:
          type: integer
        type:
          type: string
        content:
          type: string
        sort_order:
          type: integer
        is_dropout:
          type: boolean
      type: object
    SurveyTemplateQuestion:
      properties:
        id:
          type: integer
        date_created:
          type: string
          format: date-time
        template_id:
          type: integer
        name:
          type: string
        type:
          type: string
        font_style:
          type:
          - string
          - 'null'
        description:
          type: string
        sort_order:
          type: integer
        is_indicated_dates:
          type: boolean
        is_required:
          type: boolean
        dropout_date_min:
          type:
          - string
          - 'null'
          format: date-time
        dropout_date_max:
          type:
          - string
          - 'null'
          format: date-time
      type: object
    SurveyTemplate:
      properties:
        id:
          type: integer
        created_at:
          type: string
          format: date-time
        vacancy_id:
          type: integer
      type: object
    Survey:
      properties:
        id:
          type: integer
        created_at:
          type: string
          format: date-time
        response_id:
          type: integer
        name:
          type: string
        description:
          type: string
        is_finished:
          type: boolean
        is_active:
          type: boolean
      type: object
    SurveyRecord:
      properties:
        id:
          type: integer
        date_created:
          type: string
          format: date-time
        survey_id:
          type: integer
        question_id:
          type: integer
        type:
          type: string
        content:
          type: string
        sort_order:
          type: integer
        is_dropped:
          type: boolean
        answer_ids:
          type:
          - string
          - 'null'
      type: object
  parameters:
    filter_vacancy_id:
      name: filter[vacancy_id]
      in: query
      required: false
      schema:
        oneOf:
        - type: integer
        - type: array
          items:
            type: integer
    filter_created_at_to:
      name: filter[created_at][to]
      in: query
      required: false
      schema:
        type: string
        format: date-time
    pagination_page_size:
      name: limit
      in: query
      description: page size
      required: false
      schema:
        type: integer
        default: 20
    pagination_page:
      name: page
      in: query
      description: page number
      required: false
      schema:
        type: integer
        default: 1
    filter_response_id:
      name: filter[response_id]
      in: query
      required: false
      schema:
        oneOf:
        - type: integer
        - type: array
          items:
            type: integer
    filter_id:
      name: filter[id]
      in: query
      required: false
      schema:
        oneOf:
        - type: integer
        - type: array
          items:
            type: integer
    filter_created_at_from:
      name: filter[created_at][from]
      in: query
      required: false
      schema:
        type: string
        format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token