Algolia Search is a search API that provides hosted full-text, numerical and faceted search. Algolia’s Search API makes it easy to deliver a great search experience in your apps & websites providing:
- REST and JSON-based API
- search among infinite attributes from a single searchbox
- instant-search after each keystroke
- relevance & popularity combination
- typo-tolerance in any language
- faceting
- 99.99% SLA
- first-class data security
This PHP client let you easily use the Algolia Search API from your backend.
Get started
Commands reference
- Search
- Add a new object
- Update an object
- Get an object
- Delete an object
- Index settings
- List indexes
- Delete an index
- Clear an index
- Wait indexing
- Batch writes
- Security / User API Keys
- Copy or rename an index
- Backup / Retrieve all index content
- Logs
To setup your project, follow these steps:
- Download and add the algoliasearch.php file to your project
- Add the
require
call to your project - Initialize the client with your ApplicationID and API-Key. You can find all of them on your Algolia account.
require 'algoliasearch.php';
$client = new \AlgoliaSearch\Client('YourApplicationID', 'YourAPIKey');
This quick start is a 30 seconds tutorial where you can discover how to index and search objects.
Without any prior-configuration, you can index 500 contacts in the contacts
index with the following code:
$index = $client->initIndex("contacts");
$batch = json_decode(file_get_contents("contacts.json"), true);
$index->addObjects($batch);
You can then start to search for a contact firstname, lastname, company, ... (even with typos):
// search by firstname
var_dump($index->search('jimmie'));
// search a firstname with typo
var_dump($index->search('jimie'));
// search for a company
var_dump($index->search('california paint'));
// search for a firstname & company
var_dump($index->search('jimmie paint'));
Settings can be customized to tune the search behavior. For example you can add a custom sort by number of followers to the already good out-of-the-box relevance:
$index->setSettings(array("customRanking" => array("desc(followers)")));
You can also configure the list of attributes you want to index by order of importance (first = most important):
$index->setSettings(array("attributesToIndex" => array("lastname", "firstname", "company",
"email", "city", "address")));
Since the engine is designed to suggest results as you type, you'll generally search by prefix. In this case the order of attributes is very important to decide which hit is the best:
var_dump($index->search('or'));
var_dump($index->search('jim'));
Opening note: If you are building a web application, you may be more interested in using our javascript client to send queries. It brings two benefits: (i) your users get a better response time by avoiding to go through your servers, and (ii) it will offload your servers of unnecessary tasks.
To perform a search, you just need to initialize the index and perform a call to the search function.
You can use the following optional arguments:
- query: (string) The instant-search query string, all words of the query are interpreted as prefixes (for example "John Mc" will match "John Mccamey" and "Johnathan Mccamey"). If no query parameter is set, retrieves all objects.
- queryType: select how the query words are interpreted, it can be one of the following value:
- prefixAll: all query words are interpreted as prefixes,
- prefixLast: only the last word is interpreted as a prefix (default behavior),
- prefixNone: no query word is interpreted as a prefix. This option is not recommended.
- optionalWords: a string that contains the list of words that should be considered as optional when found in the query. The list of words is comma separated.
- minWordSizefor1Typo: the minimum number of characters in a query word to accept one typo in this word.
Defaults to 3. - minWordSizefor2Typos: the minimum number of characters in a query word to accept two typos in this word.
Defaults to 7.
- page: (integer) Pagination parameter used to select the page to retrieve.
Page is zero-based and defaults to 0. Thus, to retrieve the 10th page you need to setpage=9
- hitsPerPage: (integer) Pagination parameter used to select the number of hits per page. Defaults to 20.
- aroundLatLng: search for entries around a given latitude/longitude (specified as two floats separated by a comma).
For examplearoundLatLng=47.316669,5.016670
).
You can specify the maximum distance in meters with the aroundRadius parameter (in meters) and the precision for ranking with aroundPrecision (for example if you set aroundPrecision=100, two objects that are distant of less than 100m will be considered as identical for "geo" ranking parameter).
At indexing, you should specify geoloc of an object with the _geoloc attribute (in the form{"_geoloc":{"lat":48.853409, "lng":2.348800}}
) - insideBoundingBox: search entries inside a given area defined by the two extreme points of a rectangle (defined by 4 floats: p1Lat,p1Lng,p2Lat,p2Lng).
For exampleinsideBoundingBox=47.3165,4.9665,47.3424,5.0201
).
At indexing, you should specify geoloc of an object with the _geoloc attribute (in the form{"_geoloc":{"lat":48.853409, "lng":2.348800}}
)
- attributesToRetrieve: a string that contains the list of object attributes you want to retrieve (let you minimize the answer size).
Attributes are separated with a comma (for example"name,address"
), you can also use a string array encoding (for example["name","address"]
). By default, all attributes are retrieved. You can also use*
to retrieve all values when an attributesToRetrieve setting is specified for your index. - attributesToHighlight: a string that contains the list of attributes you want to highlight according to the query. Attributes are separated by a comma. You can also use a string array encoding (for example
["name","address"]
). If an attribute has no match for the query, the raw value is returned. By default all indexed text attributes are highlighted. You can use*
if you want to highlight all textual attributes. Numerical attributes are not highlighted. A matchLevel is returned for each highlighted attribute and can contain: - full: if all the query terms were found in the attribute,
- partial: if only some of the query terms were found,
- none: if none of the query terms were found.
- attributesToSnippet: a string that contains the list of attributes to snippet alongside the number of words to return (syntax is
attributeName:nbWords
). Attributes are separated by a comma (Example:attributesToSnippet=name:10,content:10
).
You can also use a string array encoding (Example:attributesToSnippet: ["name:10","content:10"]
). By default no snippet is computed. - getRankingInfo: if set to 1, the result hits will contain ranking information in _rankingInfo attribute.
- numericFilters: a string that contains the list of numeric filters you want to apply separated by a comma. The syntax of one filter is
attributeName
followed byoperand
followed byvalue
. Supported operands are<
,<=
,=
,>
and>=
. You can have multiple conditions on one attribute like for examplenumericFilters=price>100,price<1000
. You can also use a string array encoding (for examplenumericFilters: ["price>100","price<1000"]
).
- tagFilters: filter the query by a set of tags. You can AND tags by separating them by commas. To OR tags, you must add parentheses. For example,
tags=tag1,(tag2,tag3)
means tag1 AND (tag2 OR tag3). You can also use a string array encoding, for exampletagFilters: ["tag1",["tag2","tag3"]]
means tag1 AND (tag2 OR tag3).
At indexing, tags should be added in the _tags attribute of objects (for example{"_tags":["tag1","tag2"]}
).
- facetFilters: filter the query by a list of facets. Facets are separated by commas and each facet is encoded as
attributeName:value
. For example:facetFilters=category:Book,author:John%20Doe
. You can also use a string array encoding (for example["category:Book","author:John%20Doe"]
). - facets: List of object attributes that you want to use for faceting.
Attributes are separated with a comma (for example"category,author"
). You can also use a JSON string array encoding (for example["category","author"]
). Only attributes that have been added in attributesForFaceting index setting can be used in this parameter. You can also use*
to perform faceting on all attributes specified in attributesForFaceting.
- distinct: If set to 1, enable the distinct feature (disabled by default) if the
attributeForDistinct
index setting is set. This feature is similar to the SQL "distinct" keyword: when enabled in a query with thedistinct=1
parameter, all hits containing a duplicate value for the attributeForDistinct attribute are removed from results. For example, if the chosen attribute isshow_name
and several hits have the same value forshow_name
, then only the best one is kept and others are removed.
$index = $client->initIndex("contacts");
$res = $index->search("query string");
$res = $index->search("query string", array("attributesToRetrieve" => "fistname,lastname", "hitsPerPage" => 50));
The server response will look like:
{
"hits": [
{
"firstname": "Jimmie",
"lastname": "Barninger",
"objectID": "433",
"_highlightResult": {
"firstname": {
"value": "<em>Jimmie</em>",
"matchLevel": "partial"
},
"lastname": {
"value": "Barninger",
"matchLevel": "none"
},
"company": {
"value": "California <em>Paint</em> & Wlpaper Str",
"matchLevel": "partial"
}
}
}
],
"page": 0,
"nbHits": 1,
"nbPages": 1,
"hitsPerPage": 20,
"processingTimeMS": 1,
"query": "jimmie paint",
"params": "query=jimmie+paint&attributesToRetrieve=firstname,lastname&hitsPerPage=50"
}
Each entry in an index has a unique identifier called objectID
. You have two ways to add en entry in the index:
- Using automatic
objectID
assignement, you will be able to retrieve it in the answer. - Passing your own
objectID
You don't need to explicitely create an index, it will be automatically created the first time you add an object. Objects are schema less, you don't need any configuration to start indexing. The settings section provide details about advanced settings.
Example with automatic objectID
assignement:
$res = $index->addObject(array("firstname" => "Jimmie",
"lastname" => "Barninger"));
echo "objectID=" . $res['objectID'] . "\n";
Example with manual objectID
assignement:
$res = $index->addObject(array("firstname" => "Jimmie",
"lastname" => "Barninger"), "myID");
echo "objectID=" . $res['objectID'] . "\n";
You have two options to update an existing object:
- Replace all its attributes.
- Replace only some attributes.
Example to replace all the content of an existing object:
$index->saveObject(array("firstname" => "Jimmie",
"lastname" => "Barninger",
"city" => "New York",
"objectID" => "myID"));
Example to update only the city attribute of an existing object:
$index->partialUpdateObject(array("city" => "San Francisco",
"objectID" => "myID"));
You can easily retrieve an object using its objectID
and optionnaly a list of attributes you want to retrieve (using comma as separator):
// Retrieves all attributes
$index->getObject("myID");
// Retrieves firstname and lastname attributes
$index->getObject("myID", "firstname,lastname");
// Retrieves only the firstname attribute
$index->getObject("myID", "firstname");
You can delete an object using its objectID
:
$index->deleteObject("myID");
You can retrieve all settings using the getSettings
function. The result will contains the following attributes:
- attributesToIndex: (array of strings) the list of fields you want to index.
If set to null, all textual and numerical attributes of your objects are indexed, but you should update it to get optimal results.
This parameter has two important uses: - Limit the attributes to index.
For example if you store a binary image in base64, you want to store it and be able to retrieve it but you don't want to search in the base64 string. - Control part of the ranking.
(see the ranking parameter for full explanation) Matches in attributes at the beginning of the list will be considered more important than matches in attributes further down the list. In one attribute, matching text at the beginning of the attribute will be considered more important than text after, you can disable this behavior if you add your attribute insideunordered(AttributeName)
, for exampleattributesToIndex: ["title", "unordered(text)"]
. - attributesForFaceting: (array of strings) The list of fields you want to use for faceting. All strings in the attribute selected for faceting are extracted and added as a facet. If set to null, no attribute is used for faceting.
- attributeForDistinct: The attribute name used for the
Distinct
feature. This feature is similar to the SQL "distinct" keyword: when enabled in query with thedistinct=1
parameter, all hits containing a duplicate value for this attribute are removed from results. For example, if the chosen attribute isshow_name
and several hits have the same value for `show_name, then only the best one is kept and others are removed. - ranking: (array of strings) controls the way results are sorted.
We have six available criteria: - typo: sort according to number of typos,
- geo: sort according to decreassing distance when performing a geo-location based search,
- proximity: sort according to the proximity of query words in hits,
- attribute: sort according to the order of attributes defined by attributesToIndex,
- exact:
- if the user query contains one word: sort objects having an attribute that is exactly the query word before others. For example if you search for the "V" TV show, you want to find it with the "V" query and avoid to have all popular TV show starting by the v letter before it.
- if the user query contains multiple words: sort according to the number of words that matched exactly (and not as a prefix).
- custom: sort according to a user defined formula set in customRanking attribute.
The standard order is ["typo", "geo", "proximity", "attribute", "exact", "custom"] - customRanking: (array of strings) lets you specify part of the ranking.
The syntax of this condition is an array of strings containing attributes prefixed by asc (ascending order) or desc (descending order) operator. For example"customRanking" => ["desc(population)", "asc(name)"]
- queryType: Select how the query words are interpreted, it can be one of the following value:
- prefixAll: all query words are interpreted as prefixes,
- prefixLast: only the last word is interpreted as a prefix (default behavior),
- prefixNone: no query word is interpreted as a prefix. This option is not recommended.
- minWordSizefor1Typo: (integer) the minimum number of characters to accept one typo (default = 3).
- minWordSizefor2Typos: (integer) the minimum number of characters to accept two typos (default = 7).
- hitsPerPage: (integer) the number of hits per page (default = 10).
- attributesToRetrieve: (array of strings) default list of attributes to retrieve in objects. If set to null, all attributes are retrieved.
- attributesToHighlight: (array of strings) default list of attributes to highlight. If set to null, all indexed attributes are highlighted.
- attributesToSnippet: (array of strings) default list of attributes to snippet alongside the number of words to return (syntax is 'attributeName:nbWords')
By default no snippet is computed. If set to null, no snippet is computed. - highlightPreTag: (string) Specify the string that is inserted before the highlighted parts in the query result (default to "<em>").
- highlightPostTag: (string) Specify the string that is inserted after the highlighted parts in the query result (default to "</em>").
- optionalWords: (array of strings) Specify a list of words that should be considered as optional when found in the query.
You can easily retrieve settings or update them:
$settings = $index->getSettings();
var_dump($settings);
$index->setSettings(array("customRanking" => array("desc(followers)")));
You can list all your indexes with their associated information (number of entries, disk size, etc.) with the listIndexes
method:
var_dump($client->listIndexes());
You can delete an index using its name:
$client->deleteIndex("contacts");
You can delete the index content without removing settings and index specific API keys with the clearIndex command:
$index->clearIndex();
All write operations return a taskID
when the job is securely stored on our infrastructure but not when the job is published in your index. Even if it's extremely fast, you can easily ensure indexing is complete using the waitTask
method on the taskID
returned by a write operation.
For example, to wait for indexing of a new object:
$res = $index->addObject(array("firstname" => "Jimmie",
"lastname" => "Barninger"));
$index->waitTask($res['taskID']);
If you want to ensure multiple objects have been indexed, you can only check the biggest taskID.
You may want to perform multiple operations with one API call to reduce latency. We expose three methods to perform batch:
addObjects
: add an array of objects using automaticobjectID
assignementsaveObjects
: add or update an array of objects that contain anobjectID
attributepartialUpdateObjects
: partially update an array of objects that contain anobjectID
attribute (only specified attributes will be updated, other will remain unchanged)
Example using automatic objectID
assignement:
$res = $index->addObjects(array(array("firstname" => "Jimmie",
"lastname" => "Barninger"),
array("firstname" => "Warren",
"lastname" => "myID1")));
Example with user defined objectID
(add or update):
$res = $index->saveObjects(array(array("firstname" => "Jimmie",
"lastname" => "Barninger",
"objectID" => "SFO"),
array("firstname" => "Warren",
"lastname" => "Speach",
"objectID" => "myID2")));
Example that update only the firstname
attribute:
$res = $index->partialUpdateObjects(array(array("firstname" => "Jimmie",
"objectID" => "SFO"),
array("firstname" => "Warren",
"objectID" => "myID2")));
The admin API key provides full control of all your indexes. You can also generate user API keys to control security. These API keys can be restricted to a set of operations or/and restricted to a given index.
To list existing keys, you can use listUserKeys
method:
// Lists global API Keys
$client->listUserKeys();
// Lists API Keys that can access only to this index
$index->listUserKeys();
Each key is defined by a set of rights that specify the authorized actions. The different rights are:
- search: allows to search,
- browse: allow to retrieve all index content via the browse API,
- addObject: allows to add/update an object in the index,
- deleteObject: allows to delete an existing object,
- deleteIndex: allows to delete index content,
- settings: allows to get index settings,
- editSettings: allows to change index settings.
Example of API Key creation:
// Creates a new global API key that can only perform search actions
$res = $client->addUserKey(array("search"));
echo "key=" . $res['key'] . "\n";
// Creates a new API key that can only perform search action on this index
$res = $index->addUserKey(array("search"));
echo "key=" . $res['key'] . "\n";
You can also create an API Key with advanced restrictions:
- Add a validity period: the key will be valid only for a specific period of time (in seconds),
- Specify the maximum number of API calls allowed from an IP address per hour. Each time an API call is performed with this key, a check is performed. If the IP at the origin of the call did more than this number of calls in the last hour, a 403 code is returned. Defaults to 0 (no rate limit). This parameter can be used to protect you from attempts at retrieving your entire content by massively querying the index.
Note: If you are sending the query through your servers, you must use the enableRateLimitForward("TheAdminAPIKey", "EndUserIP", "APIKeyWithRateLimit")
function to enable rate-limit.
- Specify the maximum number of hits this API key can retrieve in one call. Defaults to 0 (unlimited). This parameter can be used to protect you from attempts at retrieving your entire content by massively querying the index.
// Creates a new global API key that is valid for 300 seconds
$res = $client->addUserKey(array("search"), 300);
echo "key=" . $res['key'] . "\n";
// Creates a new index specific API key valid for 300 seconds, with a rate limit of 100 calls per hour per IP and a maximum of 20 hits
$res = $index->addUserKey(array("search"), 300, 100, 20);
echo "key=" . $res['key'] . "\n";
Get the rights of a given key:
// Gets the rights of a global key
$res = $client->getUserKeyACL("f420238212c54dcfad07ea0aa6d5c45f");
// Gets the rights of an index specific key
$res = $index->getUserKeyACL("71671c38001bf3ac857bc82052485107");
Delete an existing key:
// Deletes a global key
$res = $client->deleteUserKey("f420238212c54dcfad07ea0aa6d5c45f");
// Deletes an index specific key
$res = $index->deleteUserKey("71671c38001bf3ac857bc82052485107");
You can easily copy or rename an existing index using the copy
and move
commands.
Note: Move and copy commands overwrite destination index.
// Rename MyIndex in MyIndexNewName
$res = $client->moveIndex("MyIndex", "MyIndexNewName");
// Copy MyIndex in MyIndexCopy
$res = $client->copyIndex("MyIndex", "MyIndexCopy");
The move command is particularly useful is you want to update a big index atomically from one version to another. For example, if you recreate your index MyIndex
each night from a database by batch, you just have to:
- Import your database in a new index using batches. Let's call this new index
MyNewIndex
. - Rename
MyNewIndex
inMyIndex
using the move command. This will automatically override the old index and new queries will be served on the new one.
// Rename MyNewIndex in MyIndex (and overwrite it)
$res = $client->moveIndex("MyNewIndex", "MyIndex");
You can retrieve all index content for backup purpose of for analytics using the browse method. This method retrieve 1000 objects by API call and support pagination.
// Get first page
$res = $index->browse(0);
// Get second page
$res = $index->browse(1);
You can retrieve the last logs via this API. Each log entry contains:
- Timestamp in ISO-8601 format
- Client IP
- Request Headers (API-Key is obfuscated)
- Request URL
- Request method
- Request body
- Answer HTTP code
- Answer body
- SHA1 ID of entry
You can retrieve the logs of your last 1000 API calls and browse them using the offset/length parameters:
- offset: Specify the first entry to retrieve (0-based, 0 is the most recent log entry). Default to 0.
- length: Specify the maximum number of entries to retrieve starting at offset. Defaults to 10. Maximum allowed value: 1000.
// Get last 10 log entries
$res = $client->getLogs();
// Get last 100 log entries
$res = $client->getLogs(0, 100);