Skip to content

Commit 479b05c

Browse files
Update API references in Makefile and README.md to fix rebranding issue from polygon.io to massive.com (#960)
1 parent 2f330f4 commit 479b05c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rest-spec:
3737

3838
## Update the WebSocket API spec
3939
ws-spec:
40-
curl https://api.massive.io/specs/websocket.json > .massive/websocket.json
40+
curl https://api.massive.com/specs/websocket.json > .massive/websocket.json
4141

4242
test_rest:
4343
poetry run python -m unittest discover -s test_rest

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Massive (formerly Polygon.io) Python Client - WebSocket & RESTful APIs
22

3-
Welcome to the official Python client library for the [Massive](https://massive.io/) REST and WebSocket API. To get started, please see the [Getting Started](https://massive.io/docs/stocks/getting-started) section in our documentation, view the [examples](./examples/) directory for code snippets.
3+
Welcome to the official Python client library for the [Massive](https://massive.com/) REST and WebSocket API. To get started, please see the [Getting Started](https://massive.com/docs/stocks/getting-started) section in our documentation, view the [examples](./examples/) directory for code snippets.
44

55
**Note:** Polygon.io has rebranded as [Massive.com](https://massive.com) on Oct 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.
66

@@ -19,16 +19,16 @@ pip install -U massive
1919

2020
## Getting started
2121

22-
To get started, please see the [Getting Started](https://massive.io/docs/stocks/getting-started) section in our docs, view the [examples](./examples) directory for code snippets.
22+
To get started, please see the [Getting Started](https://massive.com/docs/stocks/getting-started) section in our docs, view the [examples](./examples) directory for code snippets.
2323

24-
The free tier of our API comes with usage limitations, potentially leading to rate limit errors if these are exceeded. For uninterrupted access and to support larger data requirements, we recommend reviewing our [subscription plans](https://massive.io/pricing), which are tailored for a wide range of needs from development to high-demand applications. Refer to our pricing page for detailed information on limits and features to ensure a seamless experience, especially for real-time data processing.
24+
The free tier of our API comes with usage limitations, potentially leading to rate limit errors if these are exceeded. For uninterrupted access and to support larger data requirements, we recommend reviewing our [subscription plans](https://massive.com/pricing), which are tailored for a wide range of needs from development to high-demand applications. Refer to our pricing page for detailed information on limits and features to ensure a seamless experience, especially for real-time data processing.
2525

2626
## REST API Client
2727
Import the RESTClient.
2828
```python
2929
from massive import RESTClient
3030
```
31-
Create a new client with your [API key](https://massive.io/dashboard/api-keys)
31+
Create a new client with your [API key](https://massive.com/dashboard/api-keys)
3232
```python
3333
client = RESTClient(api_key="<API_KEY>")
3434
```
@@ -148,7 +148,7 @@ When debug mode is enabled, the client will print out useful debugging informati
148148
For instance, if you made a request for `TSLA` data for the date `2023-08-01`, you would see debug output similar to the following:
149149

150150
```
151-
Request URL: https://api.massive.io/v2/aggs/ticker/TSLA/range/1/minute/2023-08-01/2023-08-01?limit=50000
151+
Request URL: https://api.massive.com/v2/aggs/ticker/TSLA/range/1/minute/2023-08-01/2023-08-01?limit=50000
152152
Request Headers: {'Authorization': 'Bearer REDACTED', 'Accept-Encoding': 'gzip', 'User-Agent': 'Massive.com PythonClient/1.12.4'}
153153
Response Headers: {'Server': 'nginx/1.19.2', 'Date': 'Tue, 05 Sep 2023 23:07:02 GMT', 'Content-Type': 'application/json', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Content-Encoding': 'gzip', 'Vary': 'Accept-Encoding', 'X-Request-Id': '727c82feed3790b44084c3f4cae1d7d4', 'Strict-Transport-Security': 'max-age=15724800; includeSubDomains'}
154154
```
@@ -164,7 +164,7 @@ from massive.websocket.models import WebSocketMessage
164164
from typing import List
165165
```
166166
### Using the client
167-
Create a new client with your [API key](https://massive.io/dashboard/api-keys) and subscription options.
167+
Create a new client with your [API key](https://massive.com/dashboard/api-keys) and subscription options.
168168
```python
169169
# Note: Multiple subscriptions can be added to the array
170170
# For example, if you want to subscribe to AAPL and META,

0 commit comments

Comments
 (0)