Venminder (Digital Comply) Venmonitor API

The Venmonitor API from Venminder (Digital Comply) — 1 operation(s) for venmonitor.

Operations 1

GET /api/v1/Venmonitor/GetVendorScore

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/venminder-digital-comply-venmonitor-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

venminder-digital-comply-venmonitor-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Venminder OpenApi BusinessUnit Venmonitor API
  version: v1
servers:
- url: https://rsd.venminder.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- Bearer: []
tags:
- name: Venmonitor
paths:
  /api/v1/Venmonitor/GetVendorScore:
    get:
      tags:
      - Venmonitor
      parameters:
      - name: vendorKey
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OpenApi.v1.Venmonitor.GetVendorScoreResponse'
            application/xml:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.Venmonitor.GetVendorScoreResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.ErrorResponse'
            application/xml:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.ErrorResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.ErrorResponse'
            application/xml:
              schema:
                $ref: '#/components/schemas/OpenApi.v1.ErrorResponse'
components:
  schemas:
    OpenApi.v1.Venmonitor.DataPartnerScore:
      title: OpenApi.v1.Venmonitor.DataPartnerScore
      type: object
      properties:
        dataPartnerName:
          type:
          - string
          - 'null'
        normalizedScoreQuantitative:
          type:
          - number
          - 'null'
          format: double
        normalizedScoreQualitative:
          type:
          - string
          - 'null'
      additionalProperties: false
      xml:
        name: Venmonitor.DataPartnerScore
    OpenApi.v1.Venmonitor.GetVendorScoreResponse:
      title: OpenApi.v1.Venmonitor.GetVendorScoreResponse
      type: object
      properties:
        vendorNickname:
          type:
          - string
          - 'null'
        vendorKey:
          type:
          - string
          - 'null'
        venmonitorType:
          type:
          - string
          - 'null'
        publishedDate:
          type:
          - string
          - 'null'
          format: date-time
        lastRefreshDate:
          type:
          - string
          - 'null'
          format: date-time
        overallScoreQuantitative:
          type:
          - number
          - 'null'
          format: double
        overallScoreQualitative:
          type:
          - string
          - 'null'
        dataPartnerScores:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/OpenApi.v1.Venmonitor.DataPartnerScore'
      additionalProperties: false
      xml:
        name: Venmonitor.GetVendorScoreResponse
    OpenApi.v1.ErrorResponse:
      title: OpenApi.v1.ErrorResponse
      type: object
      properties:
        statusCode:
          type: integer
          format: int32
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/OpenApi.v1.ErrorResource'
      additionalProperties: false
      xml:
        name: ErrorResponse
    OpenApi.v1.ErrorResource:
      title: OpenApi.v1.ErrorResource
      type: object
      properties:
        resourceKey:
          type:
          - string
          - 'null'
        resourceValue:
          type:
          - string
          - 'null'
        field:
          type:
          - string
          - 'null'
      additionalProperties: false
      xml:
        name: ErrorResource
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert access token with Bearer into field eg. Bearer eyJhbGciOiJSUzI1Ni and click authorize.
      name: Authorization
      in: header