{"record":{"id":"eba0de31bbb22860","repo":"OpenBB-finance/OpenBB","slug":"no-snapshots-found","errorCode":null,"errorMessage":"No snapshots found.","messagePattern":"No snapshots found\\.","errorType":"exception","errorClass":"OpenBBError","httpStatus":null,"severity":"error","filePath":"openbb_platform/providers/intrinio/openbb_intrinio/models/market_snapshots.py","lineNumber":177,"sourceCode":"        if query.date:\n            url += f\"&at_datetime={query.date}\"\n\n        response = await amake_request(url, **kwargs)\n\n        if isinstance(response, dict) and \"error\" in response:\n            raise OpenBBError(\n                f\"Error: {response.get('error')}. Message: {response.get('message')}\"\n            )\n        urls: list = []\n        # Get the URL to the CSV file.\n        if response.get(\"snapshots\"):  # type: ignore\n            for d in response[\"snapshots\"]:  # type: ignore\n                if d.get(\"files\"):\n                    for f in d[\"files\"]:\n                        if f.get(\"url\"):\n                            urls.append(f.get(\"url\"))\n        if not urls:\n            raise OpenBBError(\"No snapshots found.\")\n\n        results: list = []\n\n        async def response_callback(response, _):\n            \"\"\"Response Callback.\"\"\"\n            return await response.read()\n\n        async def get_csv(url):\n            \"\"\"Return the CSV data.\"\"\"\n            response = await amake_request(\n                url, response_callback=response_callback, **kwargs\n            )\n            df = DataFrame()\n            if isinstance(response, bytes):\n                file = gzip.decompress(response)\n                df = read_csv(BytesIO(file))\n            if df.empty:\n                raise OpenBBError(\"Empty CSV file.\")","sourceCodeStart":159,"sourceCodeEnd":195,"githubUrl":"https://github.com/OpenBB-finance/OpenBB/blob/3e071fcc2cd9f891cac6040ae60296dba76dab46/openbb_platform/providers/intrinio/openbb_intrinio/models/market_snapshots.py#L159-L195","documentation":"Error \"No snapshots found.\" thrown in OpenBB-finance/OpenBB.","triggerScenarios":"Thrown at openbb_platform/providers/intrinio/openbb_intrinio/models/market_snapshots.py:177 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Adjust the query parameters (e.g., date/time, symbols) and retry.","Check whether the market is open; snapshots may be empty outside trading hours.","Verify your Intrinio subscription includes snapshot data."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"3e071fcc2cd9f891cac6040ae60296dba76dab46","analyzedAt":"2026-08-14T23:40:48.960Z","schemaVersion":2},"datasetVersion":"2026-08-15T22:17:37.221Z"}