Query Suggestions API (1.0.0)
Download OpenAPI specification:Download
API powering the Query Suggestions feature of Algolia.
List configurations
Get all the configurations of Query Suggestions. For each index, you get a block of JSON with a list of its configuration settings.
Authorizations:
Responses
Response samples
- 200
- 401
- 403
- 422
- 500
[- {
- "indexName": "string",
- "sourceIndices": [
- {
- "replicas": true,
- "indexName": "string",
- "analyticsTags": [ ],
- "facets": [ ],
- "minHits": 0,
- "minLetters": 0,
- "generate": "[[facetA, facetB], [facetC]]",
- "external": [
- {
- "query": "string",
- "count": 0
}
]
}
], - "languages": [
- "string"
], - "exclude": [
- "string"
]
}
]
Create a configuration
Create a configuration of a Query Suggestions index. There's a limit of 100 configurations per application.
Authorizations:
Request Body schema: application/json
required | Array of objects (SourceIndices) List of source indices used to generate a Query Suggestions index. |
languages | Array of strings De-duplicate singular and plural suggestions. For example, let's say your index contains English content, and that two suggestions “shoe” and “shoes” end up in your Query Suggestions index. If the English language is configured, only the most popular of those two suggestions would remain. |
exclude | Array of strings List of words and patterns to exclude from the Query Suggestions index. |
indexName required | string Index name to target. |
Responses
Request samples
- Payload
{- "sourceIndices": [
- {
- "indexName": "string",
- "analyticsTags": [ ],
- "facets": [ ],
- "minHits": 0,
- "minLetters": 0,
- "generate": "[[facetA, facetB], [facetC]]",
- "external": [
- {
- "query": "string",
- "count": 0
}
]
}
], - "languages": [
- "string"
], - "exclude": [
- "string"
], - "indexName": "string"
}
Response samples
- 200
- 400
- 401
- 403
- 422
- 500
{- "status": 200,
- "message": "Success"
}
Get a single configuration
Get the configuration of a single Query Suggestions index.
Authorizations:
path Parameters
indexName required | string Example: myIndexName The index in which to perform the request. |
Responses
Response samples
- 200
- 400
- 401
- 403
- 404
- 500
{- "indexName": "string",
- "sourceIndices": [
- {
- "replicas": true,
- "indexName": "string",
- "analyticsTags": [ ],
- "facets": [ ],
- "minHits": 0,
- "minLetters": 0,
- "generate": "[[facetA, facetB], [facetC]]",
- "external": [
- {
- "query": "string",
- "count": 0
}
]
}
], - "languages": [
- "string"
], - "exclude": [
- "string"
]
}
Update a configuration
Update the configuration of a Query Suggestions index.
Authorizations:
path Parameters
indexName required | string Example: myIndexName The index in which to perform the request. |
Request Body schema: application/json
required | Array of objects (SourceIndices) List of source indices used to generate a Query Suggestions index. |
languages | Array of strings De-duplicate singular and plural suggestions. For example, let's say your index contains English content, and that two suggestions “shoe” and “shoes” end up in your Query Suggestions index. If the English language is configured, only the most popular of those two suggestions would remain. |
exclude | Array of strings List of words and patterns to exclude from the Query Suggestions index. |
Responses
Request samples
- Payload
{- "sourceIndices": [
- {
- "indexName": "string",
- "analyticsTags": [ ],
- "facets": [ ],
- "minHits": 0,
- "minLetters": 0,
- "generate": "[[facetA, facetB], [facetC]]",
- "external": [
- {
- "query": "string",
- "count": 0
}
]
}
], - "languages": [
- "string"
], - "exclude": [
- "string"
]
}
Response samples
- 200
- 401
- 500
{- "status": 200,
- "message": "Success"
}
Delete a configuration
Delete a configuration of a Query Suggestion's index. By deleting a configuration, you stop all updates to the underlying query suggestion index. Note that when doing this, the underlying index does not change - existing suggestions remain untouched.
Authorizations:
path Parameters
indexName required | string Example: myIndexName The index in which to perform the request. |
Responses
Response samples
- 200
- 401
- 403
- 500
{- "status": 200,
- "message": "Success"
}
Get configuration status
Get the status of a Query Suggestion's index. The status includes whether the Query Suggestions index is currently in the process of being built, and the last build time.
Authorizations:
path Parameters
indexName required | string Example: myIndexName The index in which to perform the request. |
Responses
Response samples
- 200
- 401
- 403
- 500
{- "indexName": "string",
- "isRunning": true,
- "lastBuiltAt": "string"
}
Get a log file
Get the log file of the last build of a single Query Suggestion index.
Authorizations:
path Parameters
indexName required | string Example: myIndexName The index in which to perform the request. |
Responses
Response samples
- 200
- 401
- 403
- 404
- 500
[- {
- "timestamp": "string",
- "level": "INFO",
- "message": "string",
- "contextLevel": 0
}
]