Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cloud.algolia.request { application_id = "" api_key = "" url = "" method = "POST" payload = } as x1
"ABCDEF123456"
"1234567890abcdef"
"/1/indexes/products/search"
"POST", "GET", "PUT", "DELETE"
{query: "search term"}
x1, search_results
Example
cloud.algolia.request { application_id = $env.ALGOLIA_APP_ID api_key = $env.ALGOLIA_API_KEY url = "/1/indexes/products/search" method = "POST" payload = { query: $input.search_term, hitsPerPage: 20, page: 0 } } as search_response
Was this page helpful?