Skip to main content
The Recommend API client is part of the Algolia.Search package. To install this package, run:
dotnet add package Algolia.Search
To use the Recommend API client, import these namespaces:
C#
using Algolia.Search.Clients;
using Algolia.Search.Http;
using Algolia.Search.Models.Recommend;
To create an instance of the client:
C#
var client = new RecommendClient(
  new RecommendConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")
);