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/vectranetworks-proxies-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:
version: 1.0.0
title: Vectra Detect Proxies API
contact:
name: Vectra TME
email: tme@vectra.ai
description: Vectra Detect on-prem instance API
license:
name: TME Custom °-.-°
url: https://vectra.ai
servers:
- url: https://{fqdn}/api/{apiVersion}
description: Vectra Detect API
variables:
fqdn:
description: The FQDN or IP to join the Vectra Detect instance
default: detect-api.demo.vectra.io
apiVersion:
description: The API version to use
default: v2.3
security:
- VectraToken: []
tags:
- name: Proxies
description: Dedicated endpoint to Proxies
paths:
/proxies:
description: The proxies endpoint can be used to manage proxy IP addresses (internal or external).
get:
operationId: proxyGetSeveral
summary: Get all Proxies
tags:
- Proxies
responses:
'200':
description: Retrieved Proxies successfully
content:
application/json:
schema:
$ref: '#/components/schemas/resultsOfProxies'
'401':
$ref: '#/components/responses/invalidToken'
'403':
$ref: '#/components/responses/invalidPermissions'
post:
operationId: proxyCreate
summary: Create a proxy
tags:
- Proxies
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/proxyRequestBody'
responses:
'200':
description: Proxy created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/resultsOfProxies'
'401':
$ref: '#/components/responses/invalidToken'
'403':
$ref: '#/components/responses/invalidPermissions'
'422':
description: Unprocessable entity
content:
application/json:
schema:
$ref: '#/components/schemas/schemas_error'
examples:
Invalid JSON payload:
$ref: '#/components/examples/errorWrongPayload'
IP already used:
$ref: '#/components/examples/errorIPAlreadyUsed'
Invalid IP:
$ref: '#/components/examples/errorInvalidIP'
/proxies/{proxyID}:
parameters:
- name: proxyID
description: ID of the Proxy you're looking for
in: path
schema:
$ref: '#/components/schemas/proxyID'
get:
operationId: proxyGetSingle
summary: Describe a specific Proxy
tags:
- Proxies
responses:
'200':
description: Specific Proxy details
content:
application/json:
schema:
$ref: '#/components/schemas/resultsOfProxies'
'401':
$ref: '#/components/responses/invalidToken'
'403':
$ref: '#/components/responses/invalidPermissions'
'404':
description: Proxy not found
content:
application/json:
schema:
$ref: '#/components/schemas/schemas_error'
examples:
Proxy not found:
$ref: '#/components/examples/errorNotFound'
patch:
operationId: proxyUpdate
summary: Update a proxy
tags:
- Proxies
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/proxyRequestBody'
responses:
'200':
description: Proxy updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/resultsOfProxies'
'401':
$ref: '#/components/responses/invalidToken'
'403':
$ref: '#/components/responses/invalidPermissions'
'404':
description: Proxy not found
content:
application/json:
schema:
$ref: '#/components/schemas/schemas_error'
examples:
Proxy not found:
$ref: '#/components/examples/errorWrongID'
'422':
description: Unprocessable entity
content:
application/json:
schema:
$ref: '#/components/schemas/schemas_error'
examples:
Invalid JSON payload:
$ref: '#/components/examples/errorWrongPayload'
IP already used:
$ref: '#/components/examples/errorIPAlreadyUsed'
Invalid IP:
$ref: '#/components/examples/errorInvalidIP'
components:
schemas:
name:
type: string
minLength: 1
isoDateMicroseconds:
description: ISO representation of a date with microseconds
type: string
format: date-time
example: '2022-01-01T00:00:00.123456+00:00'
proxy:
description: Proxy
type: object
properties:
id:
$ref: '#/components/schemas/proxyID'
address:
$ref: '#/components/schemas/IP'
considerProxy:
type: boolean
source:
$ref: '#/components/schemas/name'
createdAt:
$ref: '#/components/schemas/isoDateMicroseconds'
lastUpdatedAt:
$ref: '#/components/schemas/isoDateMicroseconds'
required:
- id
- address
- considerProxy
- source
- createdAt
- lastUpdatedAt
proxyID:
type: string
minLength: 32
maxLength: 32
example: 5832ba020b764c0395f774b49c03ed3b
IP:
description: IP Address
type: string
example: 192.168.1.55
schemas_error:
type: object
properties:
errors:
type: array
items:
- type: object
properties:
title:
type: string
resultsOfProxies:
type: object
properties:
meta:
type: object
properties:
count:
$ref: '#/components/schemas/positiveInt'
required:
- count
proxies:
type: array
items:
$ref: '#/components/schemas/proxy'
required:
- meta
- proxies
error:
type: object
properties:
detail:
description: A human readable error message
type: string
details:
description: A human readable error message
type: string
positiveInt:
type: integer
format: int32
minimum: 0
proxyRequestBody:
type: object
properties:
address:
$ref: '#/components/schemas/IP'
considerProxy:
type: boolean
responses:
invalidToken:
description: Invalid User Token
content:
application/json:
schema:
$ref: '#/components/schemas/error'
example:
details: Invalid token.
invalidPermissions:
description: Invalid User Permissions
content:
application/json:
schema:
$ref: '#/components/schemas/error'
example:
details: You do not have permission to perform this action.
examples:
errorWrongPayload:
value:
errors:
- title: Error loading JSON data from POST request
errorWrongID:
value:
errors:
- title: Matching id not present in db.
errorIPAlreadyUsed:
value:
errors:
- title: IP already listed.
errorInvalidIP:
value:
errors:
- title: IP not valid.
errorNotFound:
value:
errors:
- title: No matching proxy found
securitySchemes:
VectraToken:
type: apiKey
name: authorization
in: header