Microsoft Bing Search API is a reliable, enterprise-grade search API that can be used for personal and commercial use. It requires an Azure account but Microsoft also offers a free tier (limited to 1,000 searches a month).
This is the recommended search provider.
Log-in to your Azure portal and:
Once the deployment is complete, locate Keys and Endpoint where you’ll find your API keys (Key 1 or Key 2).
Set the env
variable PRIVIAN_BING_API_KEY
to your API key or alternatively use the config.json
file:
{
"bing": {
"apiKey": "{YOUR_API_KEY}"
}
}
To enable Bing Search provider, add bingapi
into your config.json
file:
{
"providers": {
"search": [{
"provider": "bingapi"
}],
"suggestions": [
"bingapi"
]
}
}