-
Notifications
You must be signed in to change notification settings - Fork 5
/
gamerpower.yaml
232 lines (224 loc) · 6.03 KB
/
gamerpower.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
openapi: 3.0.3
info:
title: GamerPower API
version: 1.0.0
description: |
Access the best giveaways in gaming, from free games to beta keys to free in-game loot and more.
Will look on steam, epic-games-store, android for game and loot givaways.
type parameter can be -
- game
- loot
- beta
platform parameter can be -
- pc
- steam
- epic-games-store
- ubisoft
- gog
- itchio
- ps4
- ps5
- xbox-one
- xbox-series-xs
- switch
- android
- ios
- vr
- battlenet
- origin
- drm-free
- xbox-360
Multiple platform and type parameters can be combined using a dot (.) for filter operation.
For example - GET https://www.gamerpower.com/api/filter?platform=epic-games-store.steam.android&type=game.loot
contact:
email: [email protected]
license:
name: Attribution Required
url: https://creativecommons.org/licenses/by/4.0/
servers:
- url: https://www.gamerpower.com
paths:
/api/giveaways:
get:
summary: Get all live giveaways or filter by platform, type, and sort order
parameters:
- in: query
name: id
schema:
type: string
description: The ID of the giveaway to get more details.
- in: query
name: platform
schema:
type: string
enum:
[
pc,
steam,
epic-games-store,
ubisoft,
gog,
itchio,
ps4,
ps5,
xbox-one,
xbox-series-xs,
switch,
android,
ios,
vr,
battlenet,
origin,
drm-free,
xbox-360,
]
description: Filter giveaways by platform.
- in: query
name: type
schema:
type: string
enum: [game, loot, beta]
description: Filter giveaways by type
- in: query
name: sort-by
schema:
type: string
enum: [date, value, popularity]
description: Sort giveaways by date, value, or popularity
responses:
"200":
description: Returns a list of giveaways matching the specified filters
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Giveaway"
/api/filter:
get:
summary: Get personalized results by filtering and grouping platforms and giveaway types
parameters:
- in: query
name: platform
schema:
type: string
description: Filter giveaways by multiple platforms
- in: query
name: type
schema:
type: string
description: Filter giveaways by multiple types
responses:
"200":
description: Returns a list of giveaways matching the specified filters
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Giveaway"
/api/worth:
get:
summary: Get total number of live giveaways and estimated worth in US dollars
parameters:
- in: query
name: platform
schema:
type: string
enum:
[
pc,
steam,
epic-games-store,
ubisoft,
gog,
itchio,
ps4,
ps5,
xbox-one,
xbox-series-xs,
switch,
android,
ios,
vr,
battlenet,
origin,
drm-free,
xbox-360,
]
description: Filter giveaways by platform
- in: query
name: type
schema:
type: string
enum: [game, loot, beta]
description: Filter giveaways by type
responses:
"200":
description: Returns the total number of live giveaways and estimated worth in US dollars
content:
application/json:
schema:
type: object
properties:
total_giveaways:
type: integer
description: Total number of live giveaways matching the specified filters
estimated_worth:
type: number
format: float
description: Estimated total worth of the live giveaways in US dollars
components:
schemas:
Giveaway:
type: object
properties:
id:
type: integer
description: Unique ID of the giveaway
title:
type: string
description: Title of the giveaway
description:
type: string
description: Description of the giveaway
image:
type: string
format: uri
description: URL of the giveaway image
platform:
type: string
enum:
[
pc,
steam,
epic-games-store,
ubisoft,
gog,
itchio,
ps4,
ps5,
xbox-one,
xbox-series-xs,
switch,
android,
ios,
vr,
battlenet,
origin,
drm-free,
xbox-360,
]
description: Platform of the giveaway
type:
type: string
enum: [game, loot, beta]
description: Type of the giveaway
value:
type: number
format: float
description: Estimated value of the giveaway in US dollars
end_date:
type: string
format: date-time
description: End date and