Current search pricing
curl --request GET \
--url https://api.lightdrift.ai/v1/pricingimport requests
url = "https://api.lightdrift.ai/v1/pricing"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.lightdrift.ai/v1/pricing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"currency": "USD",
"search_price_usd_micros": 5000,
"search_price_usd": "0.005",
"per_1000_usd": 5,
"standard_rerank_max": 100,
"version": "2026-09-22"
}Current search pricing
GET
/
v1
/
pricing
Current search pricing
curl --request GET \
--url https://api.lightdrift.ai/v1/pricingimport requests
url = "https://api.lightdrift.ai/v1/pricing"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.lightdrift.ai/v1/pricing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"currency": "USD",
"search_price_usd_micros": 5000,
"search_price_usd": "0.005",
"per_1000_usd": 5,
"standard_rerank_max": 100,
"version": "2026-09-22"
}Response
200 - application/json
Effective USD rate and standard rerank limit.