api_key
|
∗ |
Your api_key.
|
user_id
|
|
Return documents belonging to this user_id. If ommited the search will be performed in everyone public docs.
|
media
|
|
Specify the type of returned documents. media values are : photo, audio, video, other.
|
share
|
|
Return the calling user documents matching this privacy level. Values are :
- 0: private docs
- 1: docs visible to family
- 2: docs visible to friends
- 3: docs visible to friends & family
- 4: public docs
This parameter will be discarded if the specified user_id is not the calling user.
|
text
|
|
Search document titles, descriptions and tags using a fulltext query. (Use +/- for boolean mode)
|
tags
|
|
Search document tags using a comma separated list of tags. (a maximum of 20 tags is allowed)
|
album_id
|
|
Perform the search in this album ID only.
|
group_id
|
|
Perform the search in this group ID only.
|
license
|
|
Return documents matching this license or a comma separated list of licenses (ex: 1,3,7). See doc.setLicense for more details about license IDs.
|
posted_min
|
|
Specify a minimum posted GMT+0 timestamp.
|
posted_max
|
|
Specify a maximum posted GMT+0 timestamp.
|
created_min
|
|
Specify a minimum creation date (using the YYYY-MM-DD HH:MM:SS format).
|
created_max
|
|
Specify a maximum creation date (using the YYYY-MM-DD HH:MM:SS format).
|
sort
|
|
The order in which to sort returned documents. The possible sorts are : relevance, popular, posted-desc, posted-asc, ''created-desc' and 'created-asc'. The default order is relevance.
|
extra
|
|
A comma seprarated list of extra information. Extra parameters are: owner, dates, count, license, medias, geo, original.
|
thumbsize
|
|
Choose your prefered size for the thumbnails: 75x, 100, 240, 500 or 560. (Value is 75x by default)
|
per_page
|
|
The number of docs to return on each page. (Default is 20, maximum is 100)
|
page
|
|
The page of results to return.
|
You may not combine all search parameters. For example you may not combine
group_id and
album_id, or a fulltext search with a tag search.Searching text and tags syntax :
blue sky clouds : return documents containing any of these words. Rank first the documents containing the 3 words.
+blue +sky clouds : return documents showing a "blue sky" with some possible "clouds".
+blue +sky -clouds : return documents showing a "blue sky" without any "clouds".
"the earth is round, like an orange" : search the exact phrase.
- The search is case-insensitive but accent-sensitive.
- Adding a "+", "-" or quotes will activate the boolean search mode.