🚫
All deprecated endpoints are also marked with a visible banner in the API Reference. The full deprecation announcement is in the Changelog.
| Deprecated endpoint | Replacement |
|---|
GET /v1/headlines/event/{event_id} | GET /v1/event_headlines/feed/live/ticker/{ticker} |
GET /v1/headlines/ticker/{ticker} | GET /v1/headlines/feed/live/ticker/{ticker} |
GET /v1/headlines/macro/{model_id} | GET /v1/headlines/feed/live/macro/{model_id} |
| Deprecated endpoint | Replacement |
|---|
GET /v1/events/entities/{event_id} | GET /v1/events/feed/live/ticker/{ticker} — entity data is now embedded in each event object |
GET /v1/events/feed/macro/ticker/{ticker} | GET /v1/events/feed/live/ticker/{ticker} |
GET /v1/events/feed/fundamental/ticker/{ticker} | GET /v1/events/feed/live/ticker/{ticker} |
GET /v1/events/fundamental/event_id/{event_id} | GET /v1/events/feed/live/ticker/{ticker} (use event_type=asset) |
GET /v1/events/macro/event_id/{event_id} | GET /v1/events/feed/live/ticker/{ticker} (use event_type=macro) |
| Deprecated endpoint | Replacement |
|---|
GET /v1/macro/live/sentiment/{model_id} | GET /v1/headlines/index/macro/live/global/{model_id} |
GET /v1/macro/historical/sentiment/{model_id} | GET /v1/headlines/index/macro/historical/global/{model_id} |
POST /v1/macro/query/sentiment | POST /v1/headlines/index/macro/query/global |
GET /v1/macro/live/regional/{model_id} | GET /v1/headlines/index/macro/live/regional/{model_id} |
GET /v1/macro/historical/regional/{model_id} | GET /v1/headlines/index/macro/historical/regional/{model_id} |
POST /v1/macro/query/regional | POST /v1/headlines/index/macro/query/regional |
| Deprecated endpoint | Replacement |
|---|
GET /v1/event_metrics/live/ticker/batch | GET /v1/events/index/live/ticker/batch |
GET /v1/event_metrics/live/ticker/{ticker} | GET /v1/events/index/live/ticker/{ticker} |
GET /v1/event_metrics/historical/ticker/{ticker} | GET /v1/events/index/historical/ticker/{ticker} |
POST /v1/event_metrics/query | POST /v1/events/index/query |
- Search your codebase for any of the deprecated endpoint paths listed above.
- Replace each call with the corresponding replacement endpoint — the response schema is compatible in most cases; check the API Reference for any parameter differences.
- Test your integration against the replacement endpoints before 2026-05-01.
- Contact the Permutable team if you need migration support or have questions about the replacement endpoints.