Skip to main content
GET
/
1
/
strategies
/
personalization
curl
curl --request GET \
  --url https://personalization.us.algolia.com/1/strategies/personalization \
  --header 'accept: application/json' \
  --header 'x-algolia-api-key: ALGOLIA_API_KEY' \
  --header 'x-algolia-application-id: ALGOLIA_APPLICATION_ID'
// Initialize the client
var client = new PersonalizationClient(
new PersonalizationConfig(
"ALGOLIA_APPLICATION_ID",
"ALGOLIA_API_KEY",
"ALGOLIA_APPLICATION_REGION"
)
);

// Call the API
var response = await client.GetPersonalizationStrategyAsync();

// print the response
Console.WriteLine(response);
// Initialize the client with your application region, eg. personalization.ALGOLIA_APPLICATION_REGION
client, err := personalization.NewClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", personalization.US)
if err != nil {
// The client can fail to initialize if you pass an invalid parameter.
panic(err)
}

// Call the API
response, err := client.GetPersonalizationStrategy()
if err != nil {
// handle the eventual error
panic(err)
}


// print the response
print(response)
// Initialize the client
PersonalizationClient client = new PersonalizationClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION");

// Call the API
PersonalizationStrategyParams response = client.getPersonalizationStrategy();

// print the response
System.out.println(response);
// Initialize the client
// Replace 'us' with your Algolia Application Region
const client = algoliasearch('ALGOLIA_APPLICATION_ID', 'ALGOLIA_API_KEY').initPersonalization({ region: 'us' });

// Call the API
const response = await client.getPersonalizationStrategy();


// print the response
console.log(response);
// Initialize the client
val client =
PersonalizationClient(
appId = "ALGOLIA_APPLICATION_ID",
apiKey = "ALGOLIA_API_KEY",
region = "ALGOLIA_APPLICATION_REGION",
)

// Call the API
var response = client.getPersonalizationStrategy()


// print the response
println(response)
// Initialize the client
$client = PersonalizationClient::create('ALGOLIA_APPLICATION_ID', 'ALGOLIA_API_KEY', 'ALGOLIA_APPLICATION_REGION');

// Call the API
$response = $client->getPersonalizationStrategy();


// print the response
var_dump($response);
# Initialize the client
# In an asynchronous context, you can use PersonalizationClient instead, which exposes the exact same methods.
client = PersonalizationClientSync(
"ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION"
)

# Call the API
response = client.get_personalization_strategy()


# print the response
print(response)
# Initialize the client
client = Algolia::PersonalizationClient.create(
"ALGOLIA_APPLICATION_ID",
"ALGOLIA_API_KEY",
"ALGOLIA_APPLICATION_REGION"
)

# Call the API
response = client.get_personalization_strategy


# print the response
puts(response)
// Initialize the client
val client = PersonalizationClient(
appId = "ALGOLIA_APPLICATION_ID",
apiKey = "ALGOLIA_API_KEY",
region = "ALGOLIA_APPLICATION_REGION"
)

// Call the API
val response = Await.result(
client.getPersonalizationStrategy(
),
Duration(100, "sec")
)

// print the response
println(response)
// Initialize the client
let client = try PersonalizationClient(appID: "ALGOLIA_APPLICATION_ID", apiKey: "ALGOLIA_API_KEY", region: .us)

// Call the API
let response = try await client.getPersonalizationStrategy()

// print the response
print(response)
{
  "eventsScoring": [
    {
      "eventName": "<string>",
      "score": 123
    }
  ],
  "facetsScoring": [
    {
      "facetName": "<string>",
      "score": 123
    }
  ],
  "personalizationImpact": 50
}
{
"message": "Invalid Application-Id or API-Key"
}
{
"message": "Invalid Application-Id or API-Key"
}
{
"message": "Invalid Application-Id or API-Key"
}
{
"message": "Invalid Application-Id or API-Key"
}
Required ACL: recommendation

Authorizations

x-algolia-application-id
string
header
required

Your Algolia application ID.

x-algolia-api-key
string
header
required

Your Algolia API key with the necessary permissions to make the request. Permissions are controlled through access control lists (ACL) and access restrictions. The required ACL to make a request is listed in each endpoint's reference.

Response

OK

eventsScoring
object[]
required

Scores associated with each event.

The higher the scores, the higher the impact of those events on the personalization of search results.

facetsScoring
object[]
required

Scores associated with each facet.

The higher the scores, the higher the impact of those events on the personalization of search results.

personalizationImpact
integer
required

Impact of personalization on the search results.

If set to 0, personalization has no impact on the search results.

Required range: 0 <= x <= 100
Last modified on March 23, 2026