Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / AI/ML / Algolia / Personalization API
Personalization API logo

Algolia Personalization API

Browse all Algolia APIs
★ Only Publicly Available OpenAPI DocumentAI/MLMl InferenceapiKey9 EndpointsREST

For Agents

Configure Algolia personalization strategies and read or delete per-user affinity profiles so search results adapt to each user.

Use for: I need to set up a personalization strategy for an Algolia app, Retrieve the affinity profile for a specific user token, Delete a user's personalization profile after a privacy request, Update the facet weights in our current personalization strategy

Not supported: Does not handle search execution, event ingestion, or product recommendations - use the Algolia Search, Insights, and Recommend APIs for those. Use this API for personalization strategy and user profile management only.

Jentic publishes the only available OpenAPI specification for the Algolia Personalization API, keeping it validated and agent-ready. The Personalization API manages personalization strategies and user profile data for Algolia search experiences. You define which facets and events count toward each user's affinity score, then read or delete the resulting per-user profile. Personalization is rate-limited to 40 calls per second per application.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Personalization API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Personalization API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Personalization API.

Define a personalization strategy that weights facets and events for affinity scoring via POST /1/strategies/personalization

Read the current personalization strategy for an application via GET /1/strategies/personalization

Retrieve a user's affinity profile keyed by user token via GET /1/profiles/personalization/{userToken}

Delete a user's profile to reset affinities or comply with erasure requests via DELETE /1/profiles/{userToken}

Issue a temporary client API key scoped to the user's session via /setClientApiKey

Use Cases

Patterns agents use Personalization API for, with concrete tasks.

★ Stand up personalized search for an e-commerce site

Define a strategy that scores brand and category facets, plus click and conversion events, for each user. Once events flow in via the Insights API, the Personalization service builds an affinity profile per userToken and Algolia automatically reorders search results to favor items matching that profile. Setup is a single POST to /1/strategies/personalization.

POST /1/strategies/personalization with eventScoring weighting clicks at 1 and conversions at 5, and facetScoring weighting brand at 3 and category at 2

GDPR profile reset on account deletion

When a user deletes their account or exercises the right to erasure, call DELETE /1/profiles/{userToken} to remove their affinity data from Algolia. Pair with DELETE /1/usertokens/{userToken} on the Insights API to wipe the underlying events.

Call DELETE /1/profiles/user_42 to remove the user's affinity profile, then DELETE /1/usertokens/user_42 on the Insights API to wipe the events

Inspect personalization quality in production

Pull a sample of user profiles via GET /1/profiles/personalization/{userToken} to verify that affinities reflect real user behavior. If profiles look thin, increase event sampling on the Insights API or adjust facet weights in the strategy.

GET /1/profiles/personalization/user_42 and report which facets and values have the highest affinity scores

Agent-managed personalization tuning

An AI agent supporting a merchandising team can read the current strategy, propose facet weight adjustments based on conversion data, and apply the new strategy through Jentic - all from a chat interface. Credentials stay in the Jentic vault.

Search Jentic for 'update Algolia personalization strategy', load setPersonalizationStrategy, and execute with the new facet and event weights

Key Endpoints

9 endpoints — jentic publishes the only available openapi specification for the algolia personalization api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/1/strategies/personalization

Get current personalization strategy

POST

/1/strategies/personalization

Create or update the personalization strategy

GET

/1/profiles/personalization/{userToken}

Get a user's affinity profile

DELETE

/1/profiles/{userToken}

Delete a user's personalization profile

GET

/1/strategies/personalization

Get current personalization strategy

POST

/1/strategies/personalization

Create or update the personalization strategy

GET

/1/profiles/personalization/{userToken}

Get a user's affinity profile

DELETE

/1/profiles/{userToken}

Delete a user's personalization profile

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

x-algolia-application-id and x-algolia-api-key are stored encrypted in the Jentic vault. Agents receive a scoped token at request time; the raw Algolia keys never enter agent context or logs.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent (e.g. 'set up Algolia personalization' or 'delete a user's affinity profile') and Jentic returns the matching Personalization operation with its input schema.

Time to first call

Time to first call

Direct integration: 1 day to wire strategy management, profile inspection, and rate-limit handling. Through Jentic: under 30 minutes - search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Algolia Recommend API

→

Different relevance lever - product recommendations rather than personalized search ranking

Choose Recommend when you need 'related products' or 'frequently bought together' rather than personalized result ordering.

Complementary

Algolia Insights API

→

Sends the events that build personalization profiles

Always pair with Insights - Personalization is empty without click and conversion events from Insights.

Complementary

Algolia Search API

→

Personalization rerankings apply to Search API queries

Use Search to run queries with the userToken parameter so personalization affinities are applied.

FAQs

Specific to using Personalization API through Jentic.

Why is there no official OpenAPI spec for the Personalization API?

Algolia does not publish a standalone OpenAPI specification for the Personalization API. Jentic generates and maintains this spec so that AI agents and developers can call the Personalization 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 Personalization API use?

Two API key headers: x-algolia-application-id and x-algolia-api-key with the personalization or admin ACL. Through Jentic, both are stored in the vault and injected at request time, so agents never handle the raw key.

Can I read a single user's affinity data?

Yes. GET /1/profiles/personalization/{userToken} returns the user's facet and event affinity scores. Use it to debug personalization quality or to surface a 'why this result' explanation in the UI.

What are the rate limits for the Algolia Personalization API?

40 API calls per second per application. The response includes x-ratelimit-limit, x-ratelimit-remaining, and x-ratelimit-reset headers so clients can pace themselves. Plan for backoff on /1/profiles reads during bulk audits.

How do I update the personalization strategy through Jentic?

Search Jentic for 'update Algolia personalization strategy', load setPersonalizationStrategy, and execute with the desired eventScoring and facetScoring arrays. Jentic handles the credential injection.

Does Personalization work without sending Insights events?

No. Personalization profiles are built from click, conversion, and view events captured by the Insights API. Without those events the affinity profile remains empty and search results are not personalized.

GET STARTED

Start building with Personalization API

Explore with Jentic
View OpenAPI Document