Skip to content

v9.1

Choose a tag to compare

@justinpolygon justinpolygon released this 24 Nov 19:17
· 6 commits to master since this release
afeba05

Release Notes – Massive JS Client v9.1 (breaking changes)

This is a major breaking release of the JS client as part of our company rebrand from Polygon.io to Massive.com. Polygon.io has rebranded as Massive.com effective October 30, 2025. Existing API keys, accounts, and integrations continue to work exactly as before. The only change in this SDK is that it now defaults to the new API base at api.massive.com, while api.polygon.io remains supported for an extended period.

Breaking Changes

  • The default REST API base URL has changed from api.polygon.ioapi.massive.com.
  • The default WebSocket base URL has changed from socket.polygon.iosocket.massive.com.
  • The package name and import path have changed from polygonmassive.

No other breaking changes are introduced. Core functionality, endpoints, and method signatures remain identical.

Migration Guide

To upgrade:

npm install --save '@massive.com/client-js'

Then update your imports:

import { restClient } from '@polygon.io/client-js'; # Old
import { restClient } from '@massive.com/client-js'; # New

All API keys, accounts, and integrations continue to function without modification. If you continue using the legacy polygon-api-client package, it will remain supported for an extended transition period.

ℹ️ Additional Information

What's Changed

Full Changelog: v8.2.0...v9.1