Introduction
Docs, guides, and API references to help you build with PredictHQ.
PredictHQ helps you build smarter models and products with real-world demand intelligence. Access high-quality event data, ready-to-use ML features, and a forecasting API designed for real impact. See how others are using it on our use cases page.
Core APIs
Events API - Clean and enriched real-world event data
Features API - Pre-aggregated ML features
Forecasts API - Demand forecasting, out of the box
Beam API - Filter out the noise
Example
import requests
response = requests.get(
url="https://api.predicthq.com/v1/events/",
headers={
"Authorization": "Bearer $ACCESS_TOKEN",
"Accept": "application/json"
},
params={
"q": "taylor swift"
}
)
print(response.json())
Dev Resources
Last updated
Was this helpful?