Gain valuable insights from a wide range of alternative data sources curated and maintained by TickerTrends.
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/agg-trend"
ticker = "CROX"
exchange = "NASDAQ"
api_key = "your_api_key"
url = f"{base_url}?ticker={ticker}&exchange={exchange}&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)