Gain valuable insights from a wide range of alternative data sources curated and maintained by TickerTrends.
Access comprehensive search trend data with our powerful API endpoint. Track and analyze search patterns for any term across multiple timeframes.
Get accurate weekly search volume estimates for any search term or ticker symbol.
Access up to 5 years of historical data to identify long-term patterns and trends.
Stay current with weekly data updates and real-time trend monitoring.
{
"data": {
"status": "success",
"message": "Used 10 credits.",
"data": [{
"term": "hoka",
"searchVolume": [{
"time": "2019-11-24",
"value": 84537.81512605042
},
{
"time": "2019-12-01",
"value": 65751.63398692811
}]
}]
}
}
GET /api/search-volume?term=hoka
Our API provides unique scores based on alternative data that we collect and curate internally. Currently, you can access our Social Arbitrage Score and Investor Saturation Score for comprehensive business performance analysis.
Gain access to real-time data and insights that help you stay ahead of market trends and make informed decisions.
Our API will expand to include more functionalities over time, ensuring you always have access to the latest and most relevant data.
import requests
base_url = "https://api.tickertrends.io/search-volume"
term = "hoka"
api_key = "your_api_key"
url = f"{base_url}?term={term}&key={api_key}"
response = requests.get(url)
if response.status_code == 200:
data = response.json()
print("Data received:", data)
else:
print(f"Failed to retrieve data. Status code: {response.status_code}")
print("Error message:", response.text)