/search (GET)
GET
/search
const url = 'https://api.quantcdn.io/v1/search';const options = { method: 'GET', headers: { 'Quant-Customer': 'example', 'Quant-Project': 'example', 'Quant-Token': '<Quant-Token>' }};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.quantcdn.io/v1/search \ --header 'Quant-Customer: example' \ --header 'Quant-Project: example' \ --header 'Quant-Token: <Quant-Token>'Returns search configuration and index status
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Header Parameters
Section titled “Header Parameters”Quant-Customer
required
string
The customer account name
Quant-Project
required
string
The project machine name
Responses
Section titled “Responses”Okay
Media type*/*
object
settings
Search configuration for the index
object
index
Detail related to index size and status
object
Invalid credentials
