Please note that this page has noindex, nofollow GET /v1/search/{index public key} Retrieve search results from the index. Required Query Parameter Optional Query Parameters Example …
DELETE /v2/indices/{index public key}/documents:batch Remove multiple documents from the index. Payload The payload includes a list of document ids in an array. Response On successful …
DELETE /v2/indices/{index public key}/documents/{document id} Remove a document from the index. Response On successful queuing of the delete operation, the endpoint returns an HTTP 202.
PUT /v2/indices/{index public key}/documents:batch Update a batch of documents or create new documents with predefined ids. Payload The request body should be a JSON object, …
PUT /v2/indices/{index public key}/documents/{document id} Update existing document, or create a new document with predefined URL or ID. PUT /v2/indices/{index public key}/documents/ Omit the document …
POST /v2/indices/{index public key}/documents/ Create a new document to the index. By default, the Documents API endpoint creates a random id for each new document. …
GET /v2/indices/{index public key}/documents/{document id} Retrieve the content of a single document from the index. Response
The Indexing API allows for retrieving documents, creating documents, updating single documents and batches of documents, as well as deleting single documents and batches of …
Please note that all the Indexing API endpoints require authentication as described here. GET DOCUMENT GET /v2/indices/{index public key}/documents/{document id} Retrieve the contents of a …