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
Copy file name to clipboardExpand all lines: outscraper/api_client.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -302,8 +302,8 @@ def google_maps_reviews_v2(self, query: list, reviews_limit: int = 100, limit: i
302
302
limit (str): parameter specifies the limit of places to take from one query search.
303
303
sort (str): parameter specifies one of the sorting types. Available values: "most_relevant", "newest", "highest_rating", "lowest_rating".
304
304
skip (int): parameter specifies the number of items to skip. It's commonly used in pagination.
305
-
start (int): parameter specifies the start timestamp value for reviews. Using the start parameter overwrites sort parameter to newest.
306
-
cutoff (int): parameter specifies the maximum timestamp value for reviews. Using the cutoff parameter overwrites sort parameter to newest.
305
+
start (int): parameter specifies the start timestamp value for reviews (newest review). The current timestamp is used when the value is not provided. Using the start parameter overwrites sort parameter to newest.
306
+
cutoff (int): parameter specifies the maximum timestamp value for reviews (oldest). Using the cutoff parameter overwrites sort parameter to newest.
307
307
cutoff_rating (int): parameter specifies the maximum (for lowest_rating sorting) or minimum (for highest_rating sorting) rating for reviews. Using the cutoffRating requires sorting to be set to "lowest_rating" or "highest_rating".
308
308
ignore_empty (bool): parameter specifies whether to ignore reviews without text or not.
309
309
coordinates (str): parameter defines the coordinates of the location where you want your query to be applied. It has to be constructed in the next sequence: "@" + "latitude" + "," + "longitude" + "," + "zoom" (e.g. "@41.3954381,2.1628662,15.1z").
limit (str): parameter specifies the limit of places to take from one query search.
355
355
sort (str): parameter specifies one of the sorting types. Available values: "most_relevant", "newest", "highest_rating", "lowest_rating".
356
356
skip (int): parameter specifies the number of items to skip. It's commonly used in pagination.
357
-
start (int): parameter specifies the start timestamp value for reviews. Using the start parameter overwrites sort parameter to newest.
358
-
cutoff (int): parameter specifies the maximum timestamp value for reviews. Using the cutoff parameter overwrites sort parameter to newest.
357
+
start (int): parameter specifies the start timestamp value for reviews (newest review). The current timestamp is used when the value is not provided. Using the start parameter overwrites sort parameter to newest.
358
+
cutoff (int): parameter specifies the maximum timestamp value for reviews (oldest review). Using the cutoff parameter overwrites sort parameter to newest.
359
359
cutoff_rating (int): parameter specifies the maximum (for lowest_rating sorting) or minimum (for highest_rating sorting) rating for reviews. Using the cutoffRating requires sorting to be set to "lowest_rating" or "highest_rating".
360
360
ignore_empty (bool): parameter specifies whether to ignore reviews without text or not.
361
361
reviews_query (str): parameter specifies the query to search among the reviews (e.g. wow, amazing, horrible place).
0 commit comments