OpenBB-finance/OpenBB · error · OpenBBError

No snapshots found.

Error message

No snapshots found.

What it means

Error "No snapshots found." thrown in OpenBB-finance/OpenBB.

Source

Thrown at openbb_platform/providers/intrinio/openbb_intrinio/models/market_snapshots.py:177

        if query.date:
            url += f"&at_datetime={query.date}"

        response = await amake_request(url, **kwargs)

        if isinstance(response, dict) and "error" in response:
            raise OpenBBError(
                f"Error: {response.get('error')}. Message: {response.get('message')}"
            )
        urls: list = []
        # Get the URL to the CSV file.
        if response.get("snapshots"):  # type: ignore
            for d in response["snapshots"]:  # type: ignore
                if d.get("files"):
                    for f in d["files"]:
                        if f.get("url"):
                            urls.append(f.get("url"))
        if not urls:
            raise OpenBBError("No snapshots found.")

        results: list = []

        async def response_callback(response, _):
            """Response Callback."""
            return await response.read()

        async def get_csv(url):
            """Return the CSV data."""
            response = await amake_request(
                url, response_callback=response_callback, **kwargs
            )
            df = DataFrame()
            if isinstance(response, bytes):
                file = gzip.decompress(response)
                df = read_csv(BytesIO(file))
            if df.empty:
                raise OpenBBError("Empty CSV file.")

View on GitHub (pinned to 3e071fcc2c)

Solutions

  1. Adjust the query parameters (e.g., date/time, symbols) and retry.
  2. Check whether the market is open; snapshots may be empty outside trading hours.
  3. Verify your Intrinio subscription includes snapshot data.

When it happens

Trigger: Thrown at openbb_platform/providers/intrinio/openbb_intrinio/models/market_snapshots.py:177 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of OpenBB-finance/OpenBB@3e071fcc2c (2026-08-14). Data as JSON: /api/errors/eba0de31bbb22860. Report an issue: GitHub.