post.search

← All the API methods

Live testing

Search for posts.
Fulltext results are limited to 3 000 posts.

  • This method call does not require authentication.

URL

http://api.ipernity.com/api/post.search

Parameters

api_key Your api_key.
user_id Return posts belonging to this user_id. If ommited the search will be performed in everyone public posts.
share Return the calling user posts matching this privacy level. Values are :
  • 0: private posts
  • 1: posts visible to family
  • 2: posts visible to friends
  • 3: posts visible to friends & family
  • 4: public posts
This parameter will be discarded if the specified user_id is not the calling user.
text Search postument titles, descriptions and tags using a fulltext query. (Use +/- for boolean mode)
tags Search postument tags using a comma separated list of tags. (a maximum of 20 tags is allowed)
license Return posts matching this license or a comma separated list of licenses (ex: 1,3,7). See post.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 format).
created_max Specify a maximum creation date (using the YYYY-MM-DD format).
sort The order in which to sort returned posts. 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 parameter is: embed.
thumbsize Choose your prefered size for embedded thumbnail: 75x, 100, 240, 250x, 500, 560, 640, 800, 1024, 1600 or 2048. (Value is 75x by default)
per_page The number of posts to return on each page. (Default is 20, maximum is 100)
page The page of results to return.
: this parameter is required.
You may not combine all search parameters. For example you may not combine a fulltext search with a tag search.
  • Searching text and tags syntax :
  • blue sky clouds : return posts containing any of these words. Rank first the posts containing the 3 words.
  • +blue +sky clouds : return posts showing a "blue sky" with some possible "clouds".
  • +blue +sky -clouds : return posts 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.
Access to embedded thumbnail size greater than 800 pixels depends on user preferences.

Response

This method only returns a status and a possible error code.

Error codes

1 Search parameter is missing At least one of the text or tags or user_id parameter is required.
2 User not found The user ID is either invalid or the account is closed/suspended.

100 API Key is missing Please add the api_key parameter to this request.
101 API Key is invalid This API key is invalid or disabled.
102 Invalid format The requested format is invalid. Valid formats are : json, xml, php.
103 Method not found The requested method is invalid or missing.
104 Signature missing The query signature is missing.
105 Signature is invalid The query signature is invalid.
106 Token missing User is not logged. The authentication token is missing.
107 Token invalid The authentication token is invalid.
108 Account closed The user account is closed or suspended.
109 Action blocked This action is blocked because of a member or a group blocklist restriction
110 Insufficient permissions Insufficient permissions for this method.
111 IP not allowed The request came from a remote address not allowed by this application.
112 Application Quota Error The application has reached its requests quota.
113 Client IP Quota Error The client IP has reached a limit. Limits are based on requests per seconds, minutes, hours, ...
120 HTTP POST required This API method must be called using HTTP POST.
121 Invalid SOAP envelope The SOAP envelope could not be parsed.
122 Invalid XML-RPC envelope The XML-RPC envelope could not be parsed.
130 OAuth protocol version unsupported We only support OAuth version 1.1 and 1.1a
131 OAuth parameters are missing Some of the OAuth parameters were not sent: %s%
132 OAuth Clock skew The timestamp sent is out of ranges. Please check your computer clock is not skewed.
133 OAuth Nonce is invalid The OAuth Nonce parameter cannot be used twice.
134 OAuth Timestamp is invalid The OAuth Timestamp parameter is out of ranges (clock skew) or inferior to the previous timestamp sent.
135 OAuth Signature method unsupported The OAuth Signature must be either MD5, HMAC_SHA1 or PLAINTEXT over HTTPS.
500 Service error Service general error.
501 Maintenance mode Service under temporarily maintenance. Thank you for your kind understanding.
503 Service unavailable The service is temporarily unavailable. Please try again in a few minutes.

Changelog

  • 2014-06-19: Method created.

See also