You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Parameter defines the query you want to search. You can use anything that you would use in a regular Apple Maps search.",
7
+
"group": "search_query"
8
+
},
9
+
"center": {
10
+
"description": "Parameter defines coordinates of the center point of the region you want to search within. You can pass the coordinates as `latitude,longitude`. (e.g. `30.324639,-97.7304611` for Austin, TX). Either a center or a location parameter is required. These parameters can't be used together.",
11
+
"group": "geographic_location"
12
+
},
13
+
"span": {
14
+
"description": "Parameter defines width and height of the search region as `latitudeDelta,longitudeDelta`. Smaller delta values correspond to a higher zoom level. (defaults to `0.5,0.5`).",
15
+
"group": "geographic_location"
16
+
},
17
+
"location": {
18
+
"type": "location",
19
+
"description": "Parameter defines the GPS coordinates used for the search origin. (e.g. `Austin, Texas, United States`). Either a center or a location parameter is required. These parameters can't be used together.",
20
+
"group": "geographic_location"
21
+
},
22
+
"sort": {
23
+
"type": "select",
24
+
"options": [
25
+
"default",
26
+
"distance",
27
+
"ratings"
28
+
],
29
+
"description": "Parameter defines the sorting refinement for the search. Can be one of the following: `distance` - Sort by distance from the `center`/`location`. `ratings` - Sort by result ratings. `default` - Sort by best match for your query. This is the default.",
30
+
"group": "refinement"
31
+
},
32
+
"toggles": {
33
+
"description": "Parameter defines the toggle options for the search. A comma separated list of toggle `key` values can be passed to this parameter. See the `refinements.toggles` object of the response to see available toggles for a search.",
34
+
"group": "refinement"
35
+
},
36
+
"multi_select_options": {
37
+
"description": "Parameter defines the options you want to filter by for multi select refinements. A comma separated list of toggle `key` values can be passed to this parameter. See the `refinement.multi_select..options` object of the response to see available multi select refinements for the search.",
38
+
"group": "refinement"
39
+
},
40
+
"open_at": {
41
+
"type": "number",
42
+
"description": "Parameter defines the time at which result locations should be open at. The value must be a Unix timestamp that is in the future, and no more than 24 hours from the current time. (e.g. `1777910991`).",
43
+
"group": "refinement"
44
+
},
45
+
"locale": {
46
+
"type": "select",
47
+
"options": [
48
+
"ar-SA",
49
+
"bn-BD",
50
+
"ca-ES",
51
+
"cs-CZ",
52
+
"da-DK",
53
+
"de-DE",
54
+
"el-GR",
55
+
"en-AU",
56
+
"en-GB",
57
+
"en-US",
58
+
"es-ES",
59
+
"es-MX",
60
+
"fi-FI",
61
+
"fr-CA",
62
+
"fr-FR",
63
+
"gu-IN",
64
+
"he-IL",
65
+
"hi-IN",
66
+
"hr-HR",
67
+
"hu-HU",
68
+
"id-ID",
69
+
"it-IT",
70
+
"ja-JP",
71
+
"kn-IN",
72
+
"ko-KR",
73
+
"ml-IN",
74
+
"mr-IN",
75
+
"ms-MY",
76
+
"nb-NO",
77
+
"nl-NL",
78
+
"or-IN",
79
+
"pa-IN",
80
+
"pl-PL",
81
+
"pt-BR",
82
+
"pt-PT",
83
+
"ro-RO",
84
+
"ru-RU",
85
+
"sk-SK",
86
+
"sl-SI",
87
+
"sv-SE",
88
+
"ta-IN",
89
+
"te-IN",
90
+
"th-TH",
91
+
"tr-TR",
92
+
"uk-UA",
93
+
"ur-PK",
94
+
"vi-VN",
95
+
"zh-CN",
96
+
"zh-HK",
97
+
"zh-TW"
98
+
],
99
+
"description": "Parameter defines the locale the results should be localized for. Locales for Apple Maps are represented as `-`. (defaults to `en-US`, the locale for U.S. English). Head to Apple Maps Locales for the list of available locales.",
100
+
"group": "localization"
101
+
}
102
+
},
103
+
"common_params": {
104
+
"engine": {
105
+
"required": true,
106
+
"description": "Set parameter to `apple_maps` to use the Apple Maps API engine.",
107
+
"group": "serpapi_parameters"
108
+
},
109
+
"no_cache": {
110
+
"type": "checkbox",
111
+
"description": "Parameter will force SerpApi to fetch the Apple Maps 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.",
112
+
"group": "serpapi_parameters"
113
+
},
114
+
"async": {
115
+
"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.",
116
+
"group": "serpapi_parameters"
117
+
},
118
+
"zero_trace": {
119
+
"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.",
120
+
"group": "serpapi_parameters"
121
+
},
122
+
"api_key": {
123
+
"required": true,
124
+
"description": "Parameter defines the SerpApi private key to use.",
125
+
"group": "serpapi_parameters"
126
+
},
127
+
"output": {
128
+
"description": "Parameter defines the final output you want. It can be set to json (default) to get a structured `JSON` of the results, or `html` to get the raw html retrieved.",
129
+
"group": "serpapi_parameters"
130
+
},
131
+
"json_restrictor": {
132
+
"description": "Parameter defines the fields you want to restrict in the outputs for smaller, faster responses. See JSON Restrictor for more details.",
Copy file name to clipboardExpand all lines: engines/baidu.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@
36
36
"group": "pagination"
37
37
},
38
38
"gpc": {
39
-
"description": "Parameter defines the time period for results. (e.g., `stf=1776650375,1777255175|stftype=1` only returns results from the past 7 days. First integer within the parameter,`1776650375` is Unix Timestamp for 7 days ago. Second integer,`1777255175` is Unix Timestamp for now.).",
39
+
"description": "Parameter defines the time period for results. (e.g., `stf=1777270191,1777874991|stftype=1` only returns results from the past 7 days. First integer within the parameter,`1777270191` is Unix Timestamp for 7 days ago. Second integer,`1777874991` is Unix Timestamp for now.).",
Copy file name to clipboardExpand all lines: engines/google_flights.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -522,11 +522,11 @@
522
522
"group": "advanced_google_flights_parameters"
523
523
},
524
524
"outbound_date": {
525
-
"description": "Parameter defines the outbound date. The format is YYYY-MM-DD. e.g. `2026-04-28`",
525
+
"description": "Parameter defines the outbound date. The format is YYYY-MM-DD. e.g. `2026-05-05`",
526
526
"group": "advanced_google_flights_parameters"
527
527
},
528
528
"return_date": {
529
-
"description": "Parameter defines the return date. The format is YYYY-MM-DD. e.g. `2026-05-04` Parameter is required if type parameter is set to: `1` (Round trip)",
529
+
"description": "Parameter defines the return date. The format is YYYY-MM-DD. e.g. `2026-05-11` Parameter is required if type parameter is set to: `1` (Round trip)",
530
530
"group": "advanced_google_flights_parameters"
531
531
},
532
532
"travel_class": {
@@ -553,7 +553,7 @@
553
553
"group": "advanced_google_flights_parameters"
554
554
},
555
555
"multi_city_json": {
556
-
"description": "Parameter defines the flight information for multi-city flights. It's a JSON string containing multiple flight information objects. Each object should contain the following fields: `departure_id` - The departure airport code or location kgmid. The format is the same as the main departure\\_id parameter. `arrival_id` - The arrival airport code or location kgmid. The format is the same as the main arrival\\_id parameter. `date` - Flight date. The format is the same as the outbound\\_date parameter. `times` - Time range for the flight. The format is the same as the outbound\\_times parameter. This parameter is optional. Example: `[{\"departure_id\":\"CDG\",\"arrival_id\":\"NRT\",\"date\":\"2026-05-04\"},{\"departure_id\":\"NRT\",\"arrival_id\":\"LAX,SEA\",\"date\":\"2026-05-11\"},{\"departure_id\":\"LAX,SEA\",\"arrival_id\":\"AUS\",\"date\":\"2026-05-18\",\"times\":\"8,18,9,23\"}]` The example is a multi-city flight from `CDG` to `NRT` on `2026-05-04`, then from `NRT` to `LAX` or `SEA` on `2026-05-11`, and finally from `LAX` or `SEA` to `AUS` on `2026-05-18`. The last flight has a departure time range from 8:00 AM to 7:00 PM and an arrival time range from 9:00 AM to 12:00 AM (Midnight).",
556
+
"description": "Parameter defines the flight information for multi-city flights. It's a JSON string containing multiple flight information objects. Each object should contain the following fields: `departure_id` - The departure airport code or location kgmid. The format is the same as the main departure\\_id parameter. `arrival_id` - The arrival airport code or location kgmid. The format is the same as the main arrival\\_id parameter. `date` - Flight date. The format is the same as the outbound\\_date parameter. `times` - Time range for the flight. The format is the same as the outbound\\_times parameter. This parameter is optional. Example: `[{\"departure_id\":\"CDG\",\"arrival_id\":\"NRT\",\"date\":\"2026-05-11\"},{\"departure_id\":\"NRT\",\"arrival_id\":\"LAX,SEA\",\"date\":\"2026-05-18\"},{\"departure_id\":\"LAX,SEA\",\"arrival_id\":\"AUS\",\"date\":\"2026-05-25\",\"times\":\"8,18,9,23\"}]` The example is a multi-city flight from `CDG` to `NRT` on `2026-05-11`, then from `NRT` to `LAX` or `SEA` on `2026-05-18`, and finally from `LAX` or `SEA` to `AUS` on `2026-05-25`. The last flight has a departure time range from 8:00 AM to 7:00 PM and an arrival time range from 9:00 AM to 12:00 AM (Midnight).",
"description": "Parameter defines the return date. The format is YYYY-MM-DD. e.g. `2026-05-04` Parameter is required if type parameter is set to: `1` (Round trip)",
530
+
"description": "Parameter defines the return date. The format is YYYY-MM-DD. e.g. `2026-05-11` Parameter is required if type parameter is set to: `1` (Round trip)",
0 commit comments