-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvirusTotalURL.yaml
More file actions
32 lines (32 loc) · 865 Bytes
/
virusTotalURL.yaml
File metadata and controls
32 lines (32 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
openapi: 3.0.1
info:
title: VirusTotal URL Analysis API
version: 1.0.0
description: |
This API retrieves analysis reports for a given URL using VirusTotal's API v3.
servers:
- url: https://www.virustotal.com/api
paths:
/v3/urls/{url}:
get:
summary: Get VirusTotal URL threat intelligence for an URL
operationId: BeakUrlAnalysis
parameters:
- name: url
in: path
description: The url given provided by the user and passed to the API endpoint.
required: true
schema:
type: string
example: 'https://www.kvms.org.in/'
responses:
"200":
description: Successful retrieval of URL analysis report
security:
- ApiKeyAuth: []
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: x-apikey