For Agents
Run search queries, index records, manage synonyms and rules, and administer keys and settings on Algolia indices.
Get started with Search API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"run an Algolia search query"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Search API API.
Run single-index and multi-index search queries with facet filters via POST /1/indexes/{indexName}/query and /1/indexes/*/queries
Index, update, and delete records individually or in batches via /1/indexes/{indexName}/{objectID} and /1/indexes/{indexName}/batch
Search across facet values within a field for filter UIs via POST /1/indexes/{indexName}/facets/{facetName}/query
Manage synonyms and query rules per index via /1/indexes/{indexName}/synonyms and /1/indexes/{indexName}/rules
GET STARTED
Use for: I need to run a search query against an Algolia index, Index a batch of new product records, Search for facet values starting with a prefix, Update an existing record without overwriting other fields
Not supported: Does not handle event ingestion, recommendations, or personalization scoring - use the Algolia Insights, Recommend, and Personalization APIs for those. Use this API for search, indexing, and index administration only.
Jentic publishes the only available OpenAPI document for Search API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for the Algolia Search API, keeping it validated and agent-ready. The Search API is Algolia's core surface - 78 endpoints covering query execution, indexing, synonyms, rules, dictionaries, API key management, clusters, vaults, and more. It serves single-index and multi-index queries, faceted filtering, browsing, batch object operations, and admin tasks like settings management and key rotation. The Search API is the foundation that the Recommend, Personalization, and Query Suggestions services build on.
Generate, list, rotate, and revoke API keys via /1/keys
Browse an entire index in pages without ranking truncation via POST /1/indexes/{indexName}/browse
Patterns agents use Search API API for, with concrete tasks.
★ Storefront search with facets and filters
Run searches against a product index using POST /1/indexes/{indexName}/query, applying facet filters for category, brand, and price. Algolia returns ranked hits along with facet counts so the UI can render filter sidebars without a second request. The query response includes a queryID that should be passed to the Insights API on click and conversion events.
POST /1/indexes/products/query with query 'running shoes', facetFilters=[['brand:Nike','brand:Adidas']], hitsPerPage=24
Bulk catalog update via batch operations
Push a full daily catalog refresh by submitting batch operations to /1/indexes/{indexName}/batch. Each batch can include addObject, updateObject, partialUpdateObject, and deleteObject operations together, and the response returns a taskID you can poll until the operations are indexed. For multi-index updates use /1/indexes/*/batch.
POST /1/indexes/products/batch with 1000 addObject operations and poll the returned taskID via /1/indexes/products/task/{taskID}
Scoped API keys for frontend search
Generate a virtual API key scoped to a specific filter (for example, tenantID for multi-tenant SaaS) using POST /1/keys with restrictIndices and filters parameters. The resulting key can safely live in the browser because Algolia enforces the scope server-side, even if the key is intercepted.
POST /1/keys with acl=['search'], restrictIndices=['products'], and filters='tenantID:42' to generate a tenant-scoped key
Agent-driven catalog search and curation
An AI agent connecting through Jentic can search the catalog, propose synonyms or rules based on no-result queries, and apply changes - all without leaving the conversation. Jentic resolves intents like 'search Algolia products' or 'add an Algolia synonym' to the right endpoint and injects credentials from the vault.
Search Jentic for 'run an Algolia search query', load searchSingleIndex, and execute with the user's query and any facet filters extracted from the conversation
78 endpoints — jentic publishes the only available openapi specification for the algolia search api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/1/indexes/{indexName}/query
Run a search query on a single index
/1/indexes/*/queries
Run multiple queries across indices
/1/indexes/{indexName}/batch
Submit batch object operations
/1/indexes/{indexName}/{objectID}
Add or replace a record by objectID
/1/indexes/{indexName}/browse
Browse the full index in pages
/1/keys
List API keys
/1/keys
Create a scoped API key
/1/indexes/{indexName}/query
Run a search query on a single index
/1/indexes/*/queries
Run multiple queries across indices
/1/indexes/{indexName}/batch
Submit batch object operations
/1/indexes/{indexName}/{objectID}
Add or replace a record by objectID
/1/indexes/{indexName}/browse
Browse the full index in pages
Three things that make agents converge on Jentic-routed access.
Credential isolation
x-algolia-application-id and x-algolia-api-key are stored encrypted in the Jentic vault, with separate keys for search vs admin operations. Agents receive scoped tokens at request time and never see raw keys.
Intent-based discovery
Agents search Jentic by intent (e.g. 'run an Algolia search query', 'add a record', 'create a scoped API key') and Jentic returns the matching Search API operation with its input schema.
Time to first call
Direct integration: 2-3 days to wire query execution, batch indexing, key management, and retry logic. Through Jentic: under 1 hour - search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Meilisearch API
Open-source search engine with similar typo-tolerant ranking
Choose Meilisearch when self-hosting is required or when you need an MIT-licensed search backend.
Elastic Kibana API
Lucene-based search and analytics with deep aggregation support
Choose Elastic when you need complex log analytics, custom scoring, or full text features beyond Algolia's hosted search.
Algolia Recommend API
Recommendation surface built on the same indices the Search API serves
Use Recommend on detail and cart pages alongside Search on the listing pages.
Algolia Insights API
Send click and conversion events keyed to Search queryIDs
Always pair with Insights to enable click and conversion analytics, Dynamic Re-Ranking, and Recommend training.
Specific to using Search API API through Jentic.
Why is there no official OpenAPI spec for the Algolia Search API?
Algolia ships SDKs but does not publish a standalone OpenAPI specification for the Search API. Jentic generates and maintains this spec so that AI agents and developers can call the Search API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Algolia Search API use?
Two API key headers: x-algolia-application-id and x-algolia-api-key. Different operations require different ACLs - 'search' for queries, 'addObject' for indexing, 'admin' for key management. Through Jentic, the appropriate key is fetched from the vault per operation.
Can I generate a public-facing key restricted to one tenant?
Yes. POST /1/keys with acl=['search'], restrictIndices, and filters such as 'tenantID:42'. Algolia enforces the filter server-side, so the resulting key is safe to embed in a browser even if it leaks.
What are the rate limits for the Algolia Search API?
Limits depend on your Algolia plan. Search queries scale per-cluster and indexing operations are queued. Watch for 429 responses with Retry-After headers and use /1/indexes/{indexName}/task/{taskID} polling rather than tight retry loops on indexing.
How do I run a search query through Jentic?
Search Jentic for 'run an Algolia search query', load searchSingleIndex, and execute with indexName, query, and any facet filters. Jentic injects the application ID and search key automatically.
Can I delete records by query?
Yes. POST /1/indexes/{indexName}/deleteByQuery with a filter expression and Algolia removes every matching record asynchronously. Poll the returned taskID to confirm deletion is fully indexed.
/1/keys
List API keys
/1/keys
Create a scoped API key