Skip to main content

massive-api

An async Python client for the Massive financial-data REST API, with smooth built-in rate limiting, cursor pagination, and pydantic validation. This is an individual project and is not associated with or sponsored by Massive.

Installation

pip install massive-py

Quick Start

import asyncio
from massive_api import MassiveApi

async def main():
    async with MassiveApi(api_key="YOUR_API_KEY") as api:
        # All tickers (paginated automatically, validated into models)
        tickers = await api.reference_api.get_all_tickers(market="stocks", active=True)
        print(len(tickers), "tickers")

        # Single ticker overview
        overview = await api.reference_api.get_ticker_overview("AAPL")
        print(overview.market_cap, overview.total_employees)

        # Corporate events (e.g. ticker changes)
        events = await api.reference_api.get_ticker_events("META")

        # Stock splits (paginated automatically)
        splits = await api.splits_api.get_splits(ticker="AAPL")

asyncio.run(main())

Supported APIs

Accessor Method Massive endpoint
reference_api get_all_tickers(...) GET /v3/reference/tickers
reference_api get_ticker_overview(ticker, ...) GET /v3/reference/tickers/{ticker}
reference_api get_ticker_events(ticker_id, ...) GET /vX/reference/tickers/{id}/events
splits_api get_splits(...) GET /stocks/v1/splits
dividends_api get_dividends(...) GET /stocks/v1/dividends

More endpoints are coming soon. Contributions are welcome - see Contributing.

Rate limiting

A single in-memory token bucket enforces requests_per_period requests every period_seconds (default 100 per 1s) with smooth refill. Bucket capacity equals requests_per_period, so it tolerates a burst of up to one full period's allowance before settling to the steady rate. The bucket is shared across all endpoint instances that use the same API key. Every request - including each page of a paginated result - draws one token. Configure it via MassiveApiConfig:

from massive_api import MassiveApiConfig

config = MassiveApiConfig(
    api_key="YOUR_API_KEY",
    requests_per_period=100,      # requests allowed per period
    period_seconds=1,             # length of the period, in seconds
    rate_limit_max_sleep=60,      # raise MaxSleepExceededError beyond this wait
    max_retries=3,                # exponential backoff on HTTP 429
    # redis_connection=redis_conn,  # optional: distributed rate limiting via redis.asyncio
)

For the Massive basic free tier (5 requests/minute), set:

config = MassiveApiConfig(api_key="YOUR_API_KEY", requests_per_period=5, period_seconds=60)

Requests that receive HTTP 429 are retried up to max_retries with exponential backoff (1s, 2s, 4s, …), floored at the token-refill interval (period_seconds / requests_per_period) so a slow tier waits at least long enough for the next token - e.g. on the 5/minute free tier each retry waits ≥12s rather than earning another 429.

Error handling

Every failure the client raises at request time is a subclass of MassiveApiError, so you never have to catch the underlying transport (aiohttp) exceptions:

from massive_api import (
    MassiveApiError,        # base class for everything below
    AuthenticationError,    # HTTP 401 / 403
    NotFoundError,          # HTTP 404
    ServerError,            # HTTP 5xx
    MassiveApiHTTPError,    # any other HTTP error status
    MaxRetriesExceededError,  # 429 persisted past max_retries
)

try:
    overview = await api.reference_api.get_ticker_overview("AAPL")
except AuthenticationError:
    ...  # bad/missing key or insufficient plan entitlement
except MassiveApiError as e:
    ...  # anything else the client raises

HTTP errors carry .status (and .message), and the originating aiohttp.ClientResponseError is preserved on __cause__. Single-resource lookups (get_ticker_overview, get_ticker_events) map 404 to None instead of raising. Only unexpected 404s raise an exception.

Pagination

List endpoints (get_all_tickers, get_splits, get_custom_bars) follow Massive's next_url cursor automatically. A single client-side control governs how much is fetched:

  • max_results - a cap on the total records returned across all pages. Pagination stops as soon as the cap is reached, so max_results=10 costs one request, not one-per-record. None (default) means "every matching record".

Each request always asks for the API's maximum page size (fewest requests), automatically reduced to max_results when that is smaller so a small cap never over-fetches.

await api.reference_api.get_all_tickers(max_results=10)      # 1 request, ≤10 rows
await api.reference_api.get_all_tickers(max_results=10_000)  # ~10 requests, ≤10k rows
await api.reference_api.get_all_tickers()                    # every row, page size = API max

Sorting & defaults

The client bakes in explicit sort/order defaults rather than relying on the API's server-side defaults, so results are deterministic even if the API changes its own defaults. Every list call sends these unless you override sort/order:

Endpoint Default sort Default order On the wire
get_all_tickers ticker asc sort=ticker + order=asc
get_dividends ticker asc sort=ticker.asc
get_splits execution_date desc sort=execution_date.desc

For dividends and splits there is no separate order parameter: the client folds sort + order into the API's sort=field.direction form. get_all_tickers sends sort and order as separate params, and also always sends active=true explicitly (pass active=False for delisted tickers).

# Uses the baked-in default (sort=execution_date.desc)
await api.splits_api.get_splits(ticker="AAPL")

# Override either or both
await api.splits_api.get_splits(ticker="AAPL", sort="ticker", order="asc")

Concurrency

Use gather_bounded to fan out many requests (e.g. Ticker Overview across ~10k tickers) while keeping the number of in-flight coroutines bounded so they saturate - but do not overrun - the 100/s bucket:

from massive_api import gather_bounded

symbols = [...]  # thousands of tickers
overviews = await gather_bounded(
    50,
    *(api.reference_api.get_ticker_overview(s) for s in symbols),
)

The gather_bounded function is just a small and lightweight wrapper, for real-world usage with things like exception handling etc. you most likely would want to manage the coroutines yourself.

See Little's law to calculate the amount of coroutines needed. At an average latency of 250ms 50 coroutines should be more than enough for 100 requests/s.

Response validation

Each list endpoint offers three ways to handle response validation:

  1. skip (default) - validate per record, drop invalid rows (logging each), and return only the valid ones. Returns list[Model] (possibly shorter).
  2. raise - validate every record and raise pydantic.ValidationError on the first bad row. Returns list[Model].
  3. raw - no validation; return the untouched JSON dicts exactly as sent. Exposed as separate *_raw() methods returning list[dict].

The default of (1) vs (2) is set on the config and can be overridden per call:

config = MassiveApiConfig(api_key="...", on_validation_error="raise")  # default for all calls

# Per-call override
tickers = await api.reference_api.get_all_tickers(on_validation_error="skip")

# Raw path (returns list[dict], never raises):
raw = await api.reference_api.get_all_tickers_raw(market="stocks")

Note that this does not apply for non-list endpoints like reference_api.get_ticker_overview, if validation fails there, a pydantic.ValidationError will be returned.

Development

mise run install   # sync deps + install pre-commit hooks
mise run lint      # ruff check + format check
mise run test      # pyright + ruff + pytest with coverage

See example.py for a runnable end-to-end example.

Contributing

Contributions are welcome! Additional endpoint coverage is on the roadmap, and pull requests that add endpoints, fix bugs, or improve the docs are appreciated. Please run the lint and test suite above before opening a pull request.

Release files for massive-api 0.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for massive-api 0.4.0
File Size Uploaded
massive_api-0.4.0.tar.gz 17.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for massive-api 0.4.0
File Interpreter ABI Platform
massive_api-0.4.0-py3-none-any.whl Python 3 none any Details

Total release size: 40.5 kB

Release files / massive_api-0.4.0.tar.gz

Download URL massive_api-0.4.0.tar.gz
Size 17.8 kB
Tags Source
SHA-256 checksum
How to use checksums
ce62996e09d847a91e6faed03cb426504e7c9c08bca4d2580621c46470d8b5e4
BLAKE2b-256 checksum
How to use checksums
8388281c6a38f05836d0e7a08a8644c6d38336f131c663c83022d9ba2baabf2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / massive_api-0.4.0-py3-none-any.whl

Download URL massive_api-0.4.0-py3-none-any.whl
Size 22.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
40065350442b5e8a1528b9fc40f90fa222dcfdc59ebae9776325366274e396c4
BLAKE2b-256 checksum
How to use checksums
be831a33d69a415ab45f191d2282402f0e542a751e7d2a3b1065c3c73fec3a7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

0.4.1

2 release files

This release

0.4.0 This release

2 release files

0.3.0

2 release files

0.2.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page