-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVTOpenAPI.yaml
More file actions
62 lines (58 loc) · 1.64 KB
/
VTOpenAPI.yaml
File metadata and controls
62 lines (58 loc) · 1.64 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
openapi: 3.0.0
info:
title: VirusTotal API
description: VirusTotal API
version: "v3"
servers:
- url: https://virustotal.com/api/v3
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: x-apikey
paths:
/files/{hash}:
get:
operationId: lookupFileHash
summary: Lookup File Hash information
parameters:
- in: path
name: hash
schema:
type: string
required: true
description: The hash to lookup
responses:
"200":
description: OK
"400":
description: Bad Request
"401":
description: No Auth Key Provided
"500":
description: Internal Server Error
security:
- ApiKeyAuth: []
/ip_addresses/{ip}:
get:
operationId: lookupIPAddress
summary: Lookup IP Address information
parameters:
- in: path
name: ip
schema:
type: string
required: true
description: The ip to lookup
responses:
"200":
description: OK
"400":
description: Bad Request
"401":
description: No Auth Key Provided
"500":
description: Internal Server Error
security:
- ApiKeyAuth: []