-
Notifications
You must be signed in to change notification settings - Fork 5
/
distillery-hunter.yaml
47 lines (47 loc) · 1.17 KB
/
distillery-hunter.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
38
39
40
41
42
43
44
45
46
47
openapi: 3.0.1
info:
title: Distillery Hunter
description: Access data from for distilleries and online whisky auctions
termsOfService: /privacy-policy/
version: v1
servers:
- url: https://whiskyhunter.net/api
paths:
/auctions_info:
get:
tags:
- auctions_info
description: Obtain a list of all online auctions, including buyer's fee, seller's
fee, and listing fee.
operationId: fetchAuctionsInformation
responses:
200:
description: ""
content: {}
/distilleries_info/:
get:
tags:
- distilleries_info
description: Retrieve a list of all distilleries, including their country and
rating.
operationId: fetchDistilleriesInformation
responses:
200:
description: ""
content: {}
/distillery_data/{slug}/:
get:
tags:
- distillery_data
description: Obtain auction data for a specific distillery.
operationId: fetchDistilleryData
parameters:
- name: slug
in: path
required: true
schema:
type: string
responses:
200:
description: ""
content: {}