Authorizations
The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey
). An api_key is linked to a user. This user's role will give you different access level to the API features.
Query Parameters
Defining the time range of a data bucket.
This will determine the precision of the returned data. For example, if you choose day
, you will receive the
number of reviews for each day.
day
, week
, month
, year
If cumulative
= false
, return the average rating of reviews from the current bucket only.
If cumulative
= true
, return the average rating of reviews from all the buckets until the current one
(included). The cumulative representation show the evolution of the average rating over time.
true
, false
Filter by business ids
Return the reviews of the businesses given in list.
Business id
Filter by keywords
Return all the reviews with not-nullable content, that contain the provided list of keywords.
Note: This is the content of the review and not the content of the reply.
The filter accepts both simple and composed words.
To indicate it's a composed keyword, add the +
as separator.
For example:
keywords=bonjour
returns all reviews containing the keywordbonjour
keywords=good+service
returns all reviews containing the combined keyword good service, without splitting the keyword. No reviews containing just good or just service will be returned.keywords=bonjour,good+service
: returns all reviews that contain either just bonjour, either just good service or both keywords at the same time.
"bonjour,good+service"
Filter by update_date
Return all the reviews whose update_date
>= given_date
.
For example : update_date__gte=2019-01-01T00:00:00
will return all reviews from the first January of 2019
until today.
Note : The update dates are stored in UTC.
"2017-08-01T00:00:00"
Filter by update_date
Return all the reviews whose update_date
<= given_date
.
For example : update_date__lte=2020-01-01T00:00:00
will return all reviews from the date of the first review
until the first january of 2020.
Note : The update dates are stored in UTC.
"2017-08-02T00:00:00"