Initialize the Go API client
Before you can interact with Algolia’s APIs, for example, to index your data or search your indices, you need to authenticate with Algolia with your Application ID and API key by initializing a client. You can find both in your Algolia account.
Initialize the search client
The search client lets you manage your indices, add data to your indices, and search your indices.
1
2
client := search.NewClient("YourApplicationID", "YourAdminAPIKey")
index := client.InitIndex("your_index_name")
Replace your_index_name
with the name of the index you want to use.
You can find your existing indices in the Algolia dashboard,
or by using the listIndices
method.
If the index doesn’t exist, a new, empty index is created locally.
It’s created on Algolia’s servers only if you add records to the index.
Don’t use any sensitive or personally identifiable information as your index name, including usernames, IDs, or email addresses. Index names are publicly shared.
Operations, that are scoped to your Algolia application via the client
are:
Operations scoped to an index
are:
The Recommend, Personalization, Insights, and A/B testing APIs come with their own clients.