Platform Data Entitlements
Pipeline datasets (funding radar, earnings, economic events) are sold as Platform Data Pro SKUs — à la carte or as a bundle. Intelligence feeds and markets use your business API key but are separate product lanes. This guide covers how access is enforced today and what is on the roadmap.
Product Lanes
| Offering | Routes | Entitlement model |
|---|---|---|
| Platform Data Pro | /intelligence/datasets/* | Pro integrator tier (see below) |
| Intelligence feed + views | /intelligence/feed, /intelligence/views/* | Active business key |
| Markets (yield / lending) | /intelligence/markets/* | Active business key |
| Assistant | /decide/assistant/chat | Active business key (+ assistant credits for free tier) |
Catalog (machine-readable)
Probe the capabilities manifest — no auth required for the document; your key determines what you can call in production.
catalog.sh
curl -sS "https://app.torque.fi/api/v1/capabilities" | jq '.data.catalog, .manifestVersion'Shipped dataset SKUs today:
| SKU id | Canonical route | Description |
|---|---|---|
| events | GET /intelligence/datasets/events | Economic calendar |
| funding-radar | GET /intelligence/datasets/funding-radar | Hyperliquid funding bias |
| earnings-spotlight | GET /intelligence/datasets/earnings-spotlight | Upcoming earnings |
Planned SKUs (listed in catalog, not yet shipped):
movers— Top moversflight-radar— Licensed flight feedmarine-traffic— Licensed marine AISallocation— Portfolio allocation (walletAddress required)
How Access Works Today
| Environment | Behavior |
|---|---|
| Default (production launch) | All active business API keys can call dataset routes. Responses include meta.integratorTier: "pro". |
| TORQUE_V1_WIDGETS_REQUIRE_PRO=1 | Only business ids listed in TORQUE_V1_PRO_INTEGRATOR_BUSINESS_IDS (comma-separated Convex ids) receive Pro access. Others get 403. |
When gated, unauthorized keys receive:
{
"error": {
"code": "INTEGRATOR_PRO_REQUIRED",
"message": "This widget route requires a Pro integrator API key. Contact Torque to enable Platform Pro on your business key."
}
}Successful dataset responses include meta.pipelineId (matches SKU id) and meta.integratorTier ("pro" or "standard").
Getting Platform Pro
- Create a Business account at app.torque.fi and generate an API key under Business Settings → API Integration.
- Contact Torque to enable Platform Data Pro (individual SKUs or
platform-data-probundle) on your business record. - Verify access: call a dataset route through your BFF and confirm
meta.integratorTieris"pro"(or no 403 when Pro gate is enabled).
Roadmap
- Per-SKU entitlements on the business record (subscribe to events only, etc.)
meta.entitlements[]on dataset responses- 403 responses naming the missing SKU id when a key lacks that pipeline
See Also
- Intelligence — Datasets — route reference and SDK
- Errors & Rate Limits —
INTEGRATOR_PRO_REQUIRED
Was this helpful?