TorqueTorque

Search docs

Search Torque documentation pages & sections

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

OfferingRoutesEntitlement 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/chatActive 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 idCanonical routeDescription
eventsGET /intelligence/datasets/eventsEconomic calendar
funding-radarGET /intelligence/datasets/funding-radarHyperliquid funding bias
earnings-spotlightGET /intelligence/datasets/earnings-spotlightUpcoming earnings

Planned SKUs (listed in catalog, not yet shipped):

  • moversTop movers
  • flight-radarLicensed flight feed
  • marine-trafficLicensed marine AIS
  • allocationPortfolio allocation (walletAddress required)

How Access Works Today

EnvironmentBehavior
Default (production launch)All active business API keys can call dataset routes. Responses include meta.integratorTier: "pro".
TORQUE_V1_WIDGETS_REQUIRE_PRO=1Only 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

  1. Create a Business account at app.torque.fi and generate an API key under Business Settings → API Integration.
  2. Contact Torque to enable Platform Data Pro (individual SKUs or platform-data-pro bundle) on your business record.
  3. Verify access: call a dataset route through your BFF and confirm meta.integratorTier is "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

Was this helpful?