-
Notifications
You must be signed in to change notification settings - Fork 31
/
openapi.yml
274 lines (274 loc) · 8.24 KB
/
openapi.yml
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
openapi: 3.0.3
info:
title: Google Trends API
description: 'Google Trends API to search results'
version: v1
servers:
- url: http://localhost:8000
description: Local php server. Start with "php -S localhost:8000"
paths:
/search-interest-by-region:
get:
summary: Retrieve interests by region result
parameters:
- $ref: "#/components/parameters/categoryId"
- $ref: "#/components/parameters/searchTerm"
- $ref: "#/components/parameters/location"
- $ref: "#/components/parameters/intervalFrom"
- $ref: "#/components/parameters/intervalTo"
- $ref: "#/components/parameters/language"
- $ref: "#/components/parameters/searchSource"
- $ref: "#/components/parameters/withTopMetrics"
- $ref: "#/components/parameters/withRisingMetrics"
responses:
200:
$ref: '#/components/responses/SearchResultForForInterestByRegionResponse'
400:
$ref: '#/components/responses/BadRequestResponse'
500:
$ref: '#/components/responses/BadRequestResponse'
/search-interest-over-time:
get:
summary: Retrieve interests over time result
parameters:
- $ref: "#/components/parameters/categoryId"
- $ref: "#/components/parameters/searchTerm"
- $ref: "#/components/parameters/location"
- $ref: "#/components/parameters/intervalFrom"
- $ref: "#/components/parameters/intervalTo"
- $ref: "#/components/parameters/language"
- $ref: "#/components/parameters/searchSource"
- $ref: "#/components/parameters/withTopMetrics"
- $ref: "#/components/parameters/withRisingMetrics"
responses:
200:
$ref: '#/components/responses/SearchResultForForInterestOverTimeResponse'
400:
$ref: '#/components/responses/BadRequestResponse'
500:
$ref: '#/components/responses/BadRequestResponse'
/search-related-topics:
get:
summary: Retrieve related topics result
parameters:
- $ref: "#/components/parameters/categoryId"
- $ref: "#/components/parameters/searchTerm"
- $ref: "#/components/parameters/location"
- $ref: "#/components/parameters/intervalFrom"
- $ref: "#/components/parameters/intervalTo"
- $ref: "#/components/parameters/language"
- $ref: "#/components/parameters/searchSource"
- $ref: "#/components/parameters/withTopMetrics"
- $ref: "#/components/parameters/withRisingMetrics"
responses:
200:
$ref: '#/components/responses/SearchResultForRelatedQueriesResponse'
400:
$ref: '#/components/responses/BadRequestResponse'
500:
$ref: '#/components/responses/BadRequestResponse'
/search-related-queries:
get:
summary: Retrieve related queries result
parameters:
- $ref: "#/components/parameters/categoryId"
- $ref: "#/components/parameters/searchTerm"
- $ref: "#/components/parameters/location"
- $ref: "#/components/parameters/intervalFrom"
- $ref: "#/components/parameters/intervalTo"
- $ref: "#/components/parameters/language"
- $ref: "#/components/parameters/searchSource"
- $ref: "#/components/parameters/withTopMetrics"
- $ref: "#/components/parameters/withRisingMetrics"
responses:
200:
$ref: '#/components/responses/SearchResultForRelatedQueriesResponse'
400:
$ref: '#/components/responses/BadRequestResponse'
500:
$ref: '#/components/responses/BadRequestResponse'
components:
parameters:
categoryId:
in: query
name: categoryId
required: false
schema:
type: integer
description: The Google trends category id.
searchTerm:
in: query
name: searchTerm
required: false
schema:
type: string
description: The Google trends search term.
location:
in: query
name: location
required: false
schema:
type: string
description: The Google trends location to be considered in the search.
intervalFrom:
in: query
name: intervalFrom
required: false
schema:
type: string
description: Will search results from this date.
example:
"2020-12-12 00:00:00"
intervalTo:
in: query
name: intervalTo
required: false
schema:
type: string
description: Will search results to this date.
example: "2020-12-12 00:00:00"
language:
in: query
name: language
required: false
schema:
type: string
description: DEPRECATED! Will be removed, cause other languages do not work as filter. We should utilize only location.
example: "en-US"
searchSource:
in: query
name: searchSource
required: false
schema:
type: string
enum:
- "" # Web search
- "images"
- "news"
- "youtube"
- "froogle" # Google Shopping
description: Will do the search considering one of these data sources. Default = "" (considers web search)
withTopMetrics:
in: query
name: withTopMetrics
required: false
schema:
type: boolean
description: Consider the top metrics in the search
withRisingMetrics:
in: query
name: withTopMetrics
required: false
schema:
type: boolean
description: Consider rising metrics in the search
schemas:
SearchResult:
type: object
properties:
searchUrl:
type: string
example: "http://www.google.com/trends/..."
totalResults:
type: integer
example: 20
SearchResultItem:
type: object
properties:
term:
type: string
example: "Sports"
value:
type: integer
example: 20
hasData:
type: boolean
searchUrl:
type: string
example: "http://www.google.com/trends/..."
metricType:
type: string
enum:
- "TOP"
- "RISING"
SearchResultItemForInterestOverTime:
allOf:
- $ref: '#/components/schemas/SearchResult'
properties:
interestAt:
type: string
example: "2020-03-21T00:00:00+00:00"
values:
type: array
items:
type: integer
hasData:
type: boolean
firstValue:
type: integer
example: 2
SearchResultItemForInterestByRegion:
allOf:
- $ref: '#/components/schemas/SearchResult'
properties:
geoCode:
type: string
example: "US-RI"
geoName:
type: string
example: "Rhode Island"
value:
type: integer
example: 2
maxValueIndex:
type: integer
example: 0
hasData:
type: boolean
SearchResultForRelatedQueries:
allOf:
- $ref: '#/components/schemas/SearchResult'
properties:
results:
type: array
items:
$ref: '#/components/schemas/SearchResultItem'
ErrorResponse:
properties:
errors:
type: array
items:
type: object
properties:
status:
type: integer
example: 400
title:
type: string
details:
type: string
responses:
SearchResultForRelatedQueriesResponse:
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/SearchResultForRelatedQueries'
SearchResultForForInterestByRegionResponse:
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/SearchResultItemForInterestByRegion'
SearchResultForForInterestOverTimeResponse:
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/SearchResultItemForInterestOverTime'
BadRequestResponse:
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'