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 URL | https://app.torque.fi/api/v1 |
| Capabilities probe | https://app.torque.fi/api/v1/capabilities |
| OpenAPI spec | https://app.torque.fi/api/v1/openapi |
| Manifest version | 7 (production) |
GET /api/v1/capabilities requires no auth. It returns routes, auth models, and integration profiles as JSON. Open live manifest.
Integration surfaces
| Surface | Auth | Primary route | Guide |
|---|---|---|---|
| Platform SDK | sk_live_… | torque-node | Docs |
| Intelligence | sk_live_… | GET /api/v1/intelligence/feed | Docs |
| Opportunities | sk_live_… | GET /api/v1/opportunities/** | Docs |
| Assistant | sk_live_… (programmatic) | POST /api/v1/assistant/chat | Docs |
| Actions | Smart wallet JWT | POST /api/v1/actions/** | Docs |
| Checkout | sk_live_… + Business ID | torque-checkout SDK | Docs |
Integration profiles
The capabilities manifest groups routes by how integrators typically combine them.
| Profile | Routes | Auth | Context |
|---|---|---|---|
| homeFeed | /api/v1/intelligence/feed | businessApiKey | walletAddress, chainId |
| conversational | /api/v1/assistant/chat | businessApiKey | walletAddress |
| actionable | /api/v1/actions/** | smartWalletJwt | JWT-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.