VISO Trust client-api-external-intelligence-report-rest-resource API

The client-api-external-intelligence-report-rest-resource API from VISO Trust — 8 operation(s) for client-api-external-intelligence-report-rest-resource.

Operations 8

POST /api/v1/external-intelligence-reports/security-scorecard Create a new SecurityScorecard intelligence report #
POST /api/v1/external-intelligence-reports/security-scorecard/bulk Bulk create SecurityScorecard intelligence reports #
POST /api/v1/external-intelligence-reports/recorded-future Create a new Recorded Future intelligence report #
POST /api/v1/external-intelligence-reports/recorded-future/bulk Bulk create Recorded Future intelligence reports #
POST /api/v1/external-intelligence-reports/bitsight Create a new BitSight intelligence report #
POST /api/v1/external-intelligence-reports/bitsight/bulk Bulk create BitSight intelligence reports #
GET /api/v1/external-intelligence-reports/vendor/{vendorDomain} Get all intelligence reports for a specific vendor #
GET /api/v1/external-intelligence-reports/vendor/{vendorDomain}/latest/{source} Get the latest intelligence report for a vendor from a specific source #

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/viso-trust-client-api-external-intelligence-report-rest-resource-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

viso-trust-client-api-external-intelligence-report-rest-resource-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VISO TRUST API Documentation client-api-assessment-rest-resource Client API External Intelligence Report Rest Resource API
  description: VISO TRUST
  version: v1.0
servers:
- url: https://app.visotrust.com
  description: VISO TRUST production API
security:
- bearerAuth: []
tags:
- name: client-api-external-intelligence-report-rest-resource
paths:
  /api/v1/external-intelligence-reports/security-scorecard:
    post:
      tags:
      - client-api-external-intelligence-report-rest-resource
      summary: Create a new SecurityScorecard intelligence report
      operationId: createSecurityScorecardIntelligenceReport
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SecurityScorecardReportCreateInput'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalIntelligenceReportClientView'
  /api/v1/external-intelligence-reports/security-scorecard/bulk:
    post:
      tags:
      - client-api-external-intelligence-report-rest-resource
      summary: Bulk create SecurityScorecard intelligence reports
      operationId: bulkCreateSecurityScorecardIntelligenceReports
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/SecurityScorecardReportCreateInput'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkExternalIntelligenceReportResponse'
  /api/v1/external-intelligence-reports/recorded-future:
    post:
      tags:
      - client-api-external-intelligence-report-rest-resource
      summary: Create a new Recorded Future intelligence report
      operationId: createRecordedFutureIntelligenceReport
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RecordedFutureReportCreateInput'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalIntelligenceReportClientView'
  /api/v1/external-intelligence-reports/recorded-future/bulk:
    post:
      tags:
      - client-api-external-intelligence-report-rest-resource
      summary: Bulk create Recorded Future intelligence reports
      operationId: bulkCreateRecordedFutureIntelligenceReports
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/RecordedFutureReportCreateInput'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkExternalIntelligenceReportResponse'
  /api/v1/external-intelligence-reports/bitsight:
    post:
      tags:
      - client-api-external-intelligence-report-rest-resource
      summary: Create a new BitSight intelligence report
      operationId: createBitsightIntelligenceReport
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BitsightReportCreateInput'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalIntelligenceReportClientView'
  /api/v1/external-intelligence-reports/bitsight/bulk:
    post:
      tags:
      - client-api-external-intelligence-report-rest-resource
      summary: Bulk create BitSight intelligence reports
      operationId: bulkCreateBitsightIntelligenceReports
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/BitsightReportCreateInput'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkExternalIntelligenceReportResponse'
  /api/v1/external-intelligence-reports/vendor/{vendorDomain}:
    get:
      tags:
      - client-api-external-intelligence-report-rest-resource
      summary: Get all intelligence reports for a specific vendor
      operationId: getIntelligenceReportsByVendor
      parameters:
      - name: vendorDomain
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalIntelligenceReportClientView'
  /api/v1/external-intelligence-reports/vendor/{vendorDomain}/latest/{source}:
    get:
      tags:
      - client-api-external-intelligence-report-rest-resource
      summary: Get the latest intelligence report for a vendor from a specific source
      operationId: getLatestIntelligenceReport
      parameters:
      - name: vendorDomain
        in: path
        required: true
        schema:
          type: string
      - name: source
        in: path
        required: true
        schema:
          type: string
          enum:
          - SECURITY_SCORECARD
          - BITSIGHT
          - RECORDED_FUTURE
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalIntelligenceReportClientView'
components:
  schemas:
    SecurityScorecardReportCreateInput:
      type: object
      default: null
      properties:
        vendorDomain:
          type: string
        reportDate:
          type: string
          format: date-time
        link:
          type:
          - string
          - 'null'
        grade:
          type: string
        domain:
          type:
          - string
          - 'null'
        score:
          type:
          - integer
          - 'null'
          format: int32
      required:
      - grade
    ExternalIntelligenceReportClientView:
      type: object
      properties:
        id:
          type: string
          format: uuid
        clientOrgId:
          type: integer
          format: int64
        clientOrgName:
          type: string
        vendorOrgId:
          type: integer
          format: int64
        vendorOrgName:
          type: string
        vendorOrgDescription:
          type:
          - string
          - 'null'
        vendorOrgFaviconUrl:
          type:
          - string
          - 'null'
        source:
          type: string
          enum:
          - SECURITY_SCORECARD
          - BITSIGHT
          - RECORDED_FUTURE
        reportDate:
          type: string
          format: date-time
        link:
          type:
          - string
          - 'null'
        rating:
          type:
          - string
          - 'null'
        typeName:
          type: string
        guid:
          type:
          - string
          - 'null'
        customId:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
        primaryDomain:
          type:
          - string
          - 'null'
        ratingRange:
          type:
          - string
          - 'null'
        ratingColor:
          type:
          - string
          - 'null'
        confidence:
          type:
          - string
          - 'null'
        ratingValue:
          type:
          - integer
          - 'null'
          format: int32
        grade:
          type:
          - string
          - 'null'
        domain:
          type:
          - string
          - 'null'
        score:
          type:
          - integer
          - 'null'
          format: int32
        triggeredRuleCount:
          type:
          - integer
          - 'null'
          format: int32
        maxRuleCount:
          type:
          - integer
          - 'null'
          format: int32
        firstSeen:
          type:
          - string
          - 'null'
          format: date-time
        lastSeen:
          type:
          - string
          - 'null'
          format: date-time
        criticalityLabel:
          type:
          - string
          - 'null'
    BitsightReportCreateInput:
      type: object
      default: null
      properties:
        vendorDomain:
          type: string
        reportDate:
          type: string
          format: date-time
        link:
          type:
          - string
          - 'null'
        guid:
          type: string
        customId:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
        primaryDomain:
          type:
          - string
          - 'null'
        ratingRange:
          type:
          - string
          - 'null'
        ratingColor:
          type:
          - string
          - 'null'
        confidence:
          type:
          - string
          - 'null'
        rating:
          type:
          - integer
          - 'null'
          format: int32
      required:
      - guid
    RecordedFutureReportCreateInput:
      type: object
      default: null
      properties:
        vendorDomain:
          type: string
        reportDate:
          type: string
          format: date-time
        link:
          type:
          - string
          - 'null'
        entityType:
          type: string
        entity:
          type: string
        riskScore:
          type: integer
          format: int32
        riskLevel:
          type: string
        firstSeen:
          type:
          - string
          - 'null'
          format: date-time
        lastSeen:
          type:
          - string
          - 'null'
          format: date-time
        triggeredRuleCount:
          type:
          - integer
          - 'null'
          format: int32
        maxRuleCount:
          type:
          - integer
          - 'null'
          format: int32
        summary:
          type:
          - string
          - 'null'
        criticalityLabel:
          type:
          - string
          - 'null'
      required:
      - entity
      - entityType
      - riskLevel
      - riskScore
    BulkExternalIntelligenceReportResponse:
      type: object
      properties:
        totalCount:
          type: integer
          format: int32
        created:
          type: array
          items:
            type: string
            format: uuid
          uniqueItems: true
        backgroundedCount:
          type: integer
          format: int32
        backgrounded:
          type: boolean
        totalFailureCount:
          type: integer
          format: int32
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token generated from your VISO TRUST user profile. Send it in the `Authorization` header as `Bearer <token>`.
externalDocs:
  description: VISO TRUST Support Documentation
  url: https://support.visotrust.com/