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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/vcv-users-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
openapi: 3.2.0
info:
title: VCV chatbot Users 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: users
paths:
/api/v3/users:
get:
description: Get users list
tags:
- users
parameters:
- $ref: '#/components/parameters/pagination_page'
- $ref: '#/components/parameters/pagination_page_size'
- name: filter[email]
in: query
description: User email filter
required: false
schema:
type: string
- name: filter[position]
in: query
description: User position filter
required: false
schema:
type: string
- name: with[]
in: query
description: Relations to retrieve
required: false
schema:
type: array
items:
type: string
enum:
- userName
- roles
- language
responses:
'200':
description: list of users
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:
users:
type: array
items:
allOf:
- $ref: '#/components/schemas/User'
- type: object
properties:
language:
$ref: '#/components/schemas/Language'
roles:
type: array
items:
$ref: '#/components/schemas/Role'
type: object
/api/v3/users/{id}:
get:
description: Get user detail
tags:
- users
parameters:
- $ref: '#/components/parameters/id'
- name: with[]
in: query
description: Relations to retrieve
required: false
schema:
type: array
items:
type: string
enum:
- userName
- roles
- language
responses:
'200':
description: User
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/User'
- type: object
properties:
language:
$ref: '#/components/schemas/Language'
roles:
type: array
items:
$ref: '#/components/schemas/Role'
components:
parameters:
pagination_page_size:
name: limit
in: query
description: page size
required: false
schema:
type: integer
default: 20
id:
name: id
in: path
description: entity id
required: true
schema:
type: integer
pagination_page:
name: page
in: query
description: page number
required: false
schema:
type: integer
default: 1
schemas:
Language:
properties:
id:
type: integer
code:
type: string
name:
type: string
bcp47_tag:
type: string
type: object
Role:
properties:
id:
type: integer
name:
type: string
role:
type: string
type: object
User:
properties:
id:
type: integer
created_at:
type: string
format: date-time
email:
type: string
position:
type: string
logo_url:
type:
- string
- 'null'
geo_id:
type: integer
lanaguage_id:
type: integer
company_id:
type: integer
userName:
type:
- object
- 'null'
properties:
user_id:
type: integer
first_name:
type: string
last_name:
type: string
language_id:
type: integer
id:
type: integer
type: object
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: token