TorqueTorque

Search docs

Search Torque documentation pages and sections

API Overview

Torque Platform v1 exposes four integration surfaces over HTTP and one npm SDK. Probe the live capabilities manifest to confirm routes and manifest version before you ship.

At a glance

Platform API base URLhttps://app.torque.fi/api/v1
Capabilities probehttps://app.torque.fi/api/v1/capabilities
OpenAPI spechttps://app.torque.fi/api/v1/openapi
Manifest version7 (production)

GET /api/v1/capabilities requires no auth. It returns routes, auth models, and integration profiles as JSON. Open live manifest.

Integration surfaces

SurfaceAuthPrimary routeGuide
Platform SDKsk_live_…torque-nodeDocs
Intelligencesk_live_…GET /api/v1/intelligence/feedDocs
Opportunitiessk_live_…GET /api/v1/opportunities/**Docs
Assistantsk_live_… (programmatic)POST /api/v1/assistant/chatDocs
ActionsSmart wallet JWTPOST /api/v1/actions/**Docs
Checkoutsk_live_… + Business IDtorque-checkout SDKDocs

Integration profiles

The capabilities manifest groups routes by how integrators typically combine them.

ProfileRoutesAuthContext
homeFeed/api/v1/intelligence/feedbusinessApiKeywalletAddress, chainId
conversational/api/v1/assistant/chatbusinessApiKeywalletAddress
actionable/api/v1/actions/**smartWalletJwtJWT-linked wallet

Authentication

Two credentials cover all v1 routes. See Authentication for the full decision table and curl examples.

Business API key

sk_live_… — Intelligence, Checkout, programmatic Assistant. Server-side only.

Smart wallet JWT

RS256 session token from Torque auth — Actions and GET /api/v1/wallet/me. In-app issuance only.

Legacy routes

Do not build on /api/home/signals or /api/home/happening-now — migrate to GET /api/v1/intelligence/feed. Legacy POST /api/assistant/chat aliases the v1 chat route (same handler).

Related

Quickstart — persona walkthroughs. OpenAPI — machine-readable v1 contract. API Reference — endpoint index and rate limits.

Was this helpful?