FAQ Search
AI Review Searches
POST
https://api.discoverist.ai/recommend/v1/clients/{client_id}/faq_search
Search FAQ.
Request Body
Name
Type
Description
question*
string
user question
{
"results": "Answer"
}
{
"error": "store not found."
}
curl --location 'https://api.discoverist.ai/recommend/v1/clients/{YOUR_CLIENT_ID}/faq_search' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json'
--data '{
"question": "what do users say about this product"
}'
const apiKey = process.env.REACT_APP_API_KEY || 'YOUR_API_KEY'; // Replace with your actual API key (consider environment variables)
const clientId = 'YOUR_CLIENT_ID'; // Replace with your actual client ID
const url = `https://api.discoverist.ai/recommend/v1/clients/${clientId}/faq_search`;
const headers = {
'accept': 'application/json',
'x-api-key': apiKey,
};
const data = {
"question": "what do users say about this product"
}
const response = await fetch(url, {
method: 'GET',
headers,
body: JSON.stringify(data),
});
import requests
import os
api_key = os.environ.get("YOUR_API_KEY")
client_id = "YOUR_CLIENT_ID" # Replace with your actual client ID
headers = {
'accept': 'application/json',
'x-api-key': YOUR_API_KEY,
}
data = {
"question": "what do users say about this product"
}
url = "https://api.discoverist.ai/recommend/v1/clients/" + client_id + "/faq_search"
response = requests.get(url, headers=headers, json=data, verify=False)
Last updated