-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathhacktrack.routum.io.yaml
37 lines (36 loc) · 1.01 KB
/
hacktrack.routum.io.yaml
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
openapi: 3.0.1
info:
title: HackTrack
description: HackTrack allows looking up security breaches, hacks, leaks and compromised data related to the user's email. If you do not know the user's email, ask them first before making queries.".
version: 'v1'
servers:
- url: https://hacktrack.routum.io
paths:
/track/{email}:
get:
operationId: getTrack
summary: Tracks the user's email for security breaches, hacks, leaks and compromised data.
parameters:
- in: path
name: email
schema:
type: string
required: true
description: The email of the user.
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/getTrackResponse'
components:
schemas:
getTrackResponse:
type: object
properties:
todos:
type: array
items:
type: string
description: The list of breaches and leaks.