How to open search api for from algolia?

Hello, I am successfully storing , updating and deleting data from algolia when it happended in starpi with following code:

lifecycles: {
afterCreate(result, data) {
strapi.services.algolia.saveObject(result, index);
},
afterUpdate(result, params, data) {
strapi.services.algolia.saveObject(result, index);
},
afterDelete(result, params) {
strapi.services.algolia.deleteObject(result.id, index);
},
},

Now, how to open api for frontend to search over the objects from algolia ?