Which Endpoint Should I Use?

Map your use case to the right endpoint — from raw news to trading signals and systematic indices.

Not sure where to start? Find your use case below and go straight to the endpoint that fits.

I want to...

Get the latest news for an asset

Use GET /v1/headlines/feed/live/ticker/{ticker}

Returns the most recent headlines for a ticker, each scored with sentiment and classified by topic. This is the most granular data in the API — individual articles, not aggregated.

API Reference


Get a directional signal for a ticker

Use GET /v1/signals

Returns a bullish / bearish / neutral decision for one or more tickers, derived from the underlying sentiment and event data. The fastest way to get a single actionable view.

API Reference


Get a written market summary

Use GET /v1/insights/analyst/{ticker}

Returns an AI-generated narrative summary of market conditions over a chosen lookback window (weekly, monthly, quarterly, yearly). Designed for discretionary traders who want a written briefing rather than a number.

API Reference


Build or backtest a quantitative model

Use GET /v1/headlines/index/ticker/historical/{ticker} or GET /v1/indices/historical/{model_id}

Returns hourly sentiment index values for a ticker or model. These are the clean, numeric time-series inputs used in systematic strategies. Historical data is available for backtesting; live data is available for production inference.

API Reference


Monitor significant market events

Use GET /v1/events/feed/live/ticker/{ticker}

Returns structured events extracted from news — discrete, market-relevant occurrences with a topic, directional label, and timestamp. More structured than raw headlines, more granular than insights.

API Reference


Track macroeconomic sentiment

Use GET /v1/headlines/index/macro/live/global/{model_id}

Returns aggregated macro-level sentiment for a given model (e.g. inflation, monetary policy, GDP). Useful for macro overlays on top of asset-level signals.

API Reference


Get a forward-looking forecast

Use GET /v1/insights/forecast/{ticker}

Returns a directional forecast and scenario summary for a ticker based on Permutable's predictive models.

API Reference


Discover what tickers and sectors are available

Use GET /v1/ticker/search or GET /v1/taxonomy/tickers

/ticker/search lets you search by keyword. /taxonomy/tickers returns the full list. Use these before any data call to confirm the ticker ID you need.

API Reference


Decision summary

Use caseRecommended endpoint
Latest news with sentimentGET /v1/headlines/feed/live/ticker/{ticker}
Directional trading signalGET /v1/signals
Written market briefingGET /v1/insights/analyst/{ticker}
Quantitative index for modellingGET /v1/headlines/index/ticker/live/{ticker}
Structured market eventsGET /v1/events/feed/live/ticker/{ticker}
Macro sentiment overlayGET /v1/headlines/index/macro/live/global/{model_id}
Forward-looking forecastGET /v1/insights/forecast/{ticker}
Discover available tickersGET /v1/ticker/search

Next steps