Skip to main content

Algolia Connector

Algolia Algolia is an advanced AI search platform.

Connections

Algolia API Key

Algolia API Key

InputCommentsDefault
API KeyYour Algolia API Key
Application IDYour Algolia Application ID

Actions

Browse Index

Retrieve all objects from an index.

InputCommentsDefault
Connection
Index NameProvide a string value for the index name.
Search ParametersProvide a URL-encoded string for search parameters. This is optional.
CursorProvide a string value for the cursor. This is optional.

Copy Index

Copy an index, including its records, Synonyms, Rules, and settings (except for enableReRanking).

InputCommentsDefault
Connection
Index FromThe index to copy from.
Index ToThe index to copy to.

Copy Settings

Copy the settings of an index to another index on the same app.

InputCommentsDefault
Connection
Index FromThe index to copy the settings from.
Index ToThe index to copy the settings to.

Delete Index

Delete an index.

InputCommentsDefault
Connection
Index NameThe index name to delete.

Get Index

Get index information

InputCommentsDefault
Connection
Index NameProvide a string value for the index name.
Query StringProvide a string value for the query string. This is optional.

Get Settings

Get the settings of an index.

InputCommentsDefault
Connection
Index NameProvide a string value for the index name.

List Indices

Get a list of indices with their associated metadata.

InputCommentsDefault
Connection
PageRetrieve a specific page. Pages are zero-based. The page size is set to 100. This parameter isn’t set by default, and all indices are retrieved at once.

Move Index

Move or rename an index.

InputCommentsDefault
Connection
Index FromThe index to move from.
Index ToThe index to move to.

Raw Request

Send raw HTTP request to Algolia

InputCommentsDefault
Connection
URLInput the path only (/1/indexes/{indexName}), The base URL is already included (https://<CONNECTION_INPUT_APPLICATION_ID>.algolia.net). For example, to connect to https://<CONNECTION_INPUT_APPLICATION_ID>.algolia.net/1/indexes/{indexName}, only /1/indexes/{indexName} is entered in this field.
MethodThe HTTP method to use.
DataThe HTTP body payload to send to the URL.
Form DataThe Form Data to be sent as a multipart form upload.
File DataFile Data to be sent as a multipart form upload.
File Data File NamesFile names to apply to the file data inputs. Keys must match the file data keys above.
Query ParameterA list of query parameters to send with the request. This is the portion at the end of the URL similar to ?key1=value1&key2=value2.
HeaderA list of headers to send with the request.
Response TypeThe type of data you expect in the response. You can request json, text, or binary data.json
TimeoutThe maximum time that a client will await a response to its request
Debug RequestEnabling this flag will log out the current request.false
Retry Delay (ms)The delay in milliseconds between retries. This is used when 'Use Exponential Backoff' is disabled.0
Retry On All ErrorsIf true, retries on all erroneous responses regardless of type. This is helpful when retrying after HTTP 429 or other 3xx or 4xx errors. Otherwise, only retries on HTTP 5xx and network errors.false
Max Retry CountThe maximum number of retries to attempt. Specify 0 for no retries.0
Use Exponential BackoffSpecifies whether to use a pre-defined exponential backoff strategy for retries. When enabled, 'Retry Delay (ms)' is ignored.false

Search Facet Values

Search for values of a given facet.

InputCommentsDefault
Connection
Index NameProvide a string value for the index name.
Facet NameProvide a string value for the facet name.
Facet QueryProvide a string value for the facet query. This is optional.
Max Facet HitsProvide a number for the maximum number of facet hits to return. This is optional.

Search Multiple Indices

Send multiple search queries, potentially targeting multiple indices, in a single API call.

InputCommentsDefault
Connection
RequestsProvide a JSON object where each key-value pair represents an index-query pair for the search.
[
{
"indexName": "acme",
"params": "filters=objectID:ff68be7beb72da7db241ffeca4b62f09739ef79f"
},
{
"indexName": "acme-test-2",
"params": "filters=objectID:b5c24740f0b7a94318193ab136fc3d70eea71f1c"
}
]
StrategyProvide a strategy. The possible values are 'none' and 'stopIfEnoughMatches'. This is optional.

Set Settings

Change an index's settings.

InputCommentsDefault
Connection
Index NameProvide a string value for the index name.
SettingsA mapping of settings parameters you can use on an index.
Forward to ReplicasThe change is also propagated to replicas of this index.false

Update Batch Indices

This method enables you to batch multiple different indexing operations in one API call, like add or delete objects, potentially targeting multiple indices.

InputCommentsDefault
Connection
RequestsAn array of operations to batch.