-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapple_product.json
More file actions
215 lines (215 loc) · 5.39 KB
/
Copy pathapple_product.json
File metadata and controls
215 lines (215 loc) · 5.39 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
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
{
"engine": "apple_product",
"params": {
"product_id": {
"required": true,
"description": "Parameter defines the product id you want to search. You can use the specific id of a product that you would like to get the product page of.",
"group": "search_query"
},
"type": {
"required": false,
"type": "select",
"options": [
"app"
],
"description": "Parameter defines the type of Apple Product to get the product page of. It defaults to `app`.",
"group": "advanced_apple_parameters"
},
"country": {
"required": false,
"type": "select",
"options": [
"al",
"dz",
"ao",
"ai",
"ag",
"ar",
"am",
"au",
"at",
"az",
"bs",
"bh",
"bb",
"by",
"be",
"bz",
"bj",
"bm",
"bt",
"bo",
"bw",
"br",
"vg",
"bn",
"bg",
"bf",
"kh",
"ca",
"cv",
"ky",
"cl",
"td",
"cn",
"co",
"cd",
"cr",
"hr",
"cy",
"cz",
"dk",
"dm",
"do",
"ec",
"eg",
"sv",
"ee",
"fj",
"fi",
"fr",
"de",
"gm",
"gb",
"gh",
"gr",
"gd",
"gt",
"gw",
"gy",
"hn",
"hk",
"hu",
"is",
"in",
"id",
"ie",
"il",
"it",
"jm",
"jp",
"jo",
"kz",
"ke",
"kw",
"kg",
"la",
"lv",
"lb",
"li",
"lt",
"lu",
"mo",
"mk",
"mg",
"mw",
"my",
"ml",
"mt",
"mr",
"mu",
"mx",
"fm",
"md",
"mn",
"ms",
"mz",
"na",
"np",
"nl",
"nz",
"ni",
"ne",
"ng",
"no",
"om",
"pk",
"pw",
"pa",
"pg",
"py",
"pe",
"ph",
"pl",
"pt",
"qa",
"ro",
"ru",
"st",
"sa",
"sn",
"sc",
"sl",
"sg",
"sk",
"si",
"sb",
"za",
"kr",
"es",
"lk",
"kn",
"lc",
"vc",
"sr",
"sz",
"se",
"ch",
"tw",
"tj",
"tz",
"th",
"tt",
"tn",
"tr",
"tm",
"tc",
"ug",
"ua",
"ae",
"us",
"uy",
"uz",
"ve",
"vn",
"ye",
"zw"
],
"description": "Parameter defines the country to use for the search. It's a two-letter country code. (e.g., `us` (default) for the United States, `uk` for United Kingdom, or `fr` for France). Head to the Apple Regions for a full list of supported Apple Regions.",
"group": "localization"
}
},
"common_params": {
"engine": {
"required": true,
"description": "Set parameter to `apple_product` to use the Apple Product API engine.",
"group": "serpapi_parameters"
},
"no_cache": {
"type": "checkbox",
"description": "Parameter will force SerpApi to fetch the Apple Product results even if a cached version is already present. A cache is served only if the query and all parameters are exactly the same. Cache expires after 1h. Cached searches are free, and are not counted towards your searches per month. It can be set to `false` (default) to allow results from the cache, or `true` to disallow results from the cache. no\\_cache and async parameters should not be used together.",
"group": "serpapi_parameters"
},
"async": {
"description": "Parameter defines the way you want to submit your search to SerpApi. It can be set to `false` (default) to open an HTTP connection and keep it open until you got your search results, or `true` to just submit your search to SerpApi and retrieve them later. In this case, you'll need to use our Searches Archive API to retrieve your results. async and no\\_cache parameters should not be used together. async should not be used on accounts with Ludicrous Speed enabled.",
"group": "serpapi_parameters"
},
"zero_trace": {
"description": "Enterprise only. Parameter enables ZeroTrace mode. It can be set to `false` (default) or `true`. Enable this mode to skip storing search parameters, search files, and search metadata on our servers. This may make debugging more difficult.",
"group": "serpapi_parameters"
},
"api_key": {
"required": true,
"description": "Parameter defines the SerpApi private key to use.",
"group": "serpapi_parameters"
},
"output": {
"description": "Parameter defines the format of the result. It can be set to `json` (default) to get a structured JSON of the results, `html` to get the raw HTML retrieved, or `md` to get a markdown-formatted version optimized for LLMs and AI agents.",
"group": "serpapi_parameters"
},
"json_restrictor": {
"description": "Parameter defines the fields you want to include in the output, reducing payload size for faster response. See the JSON Restrictor documentation for more details.",
"group": "serpapi_parameters"
}
}
}