2,691 rows from 64 collector runs
Browse files- README.md +92 -0
- dataset.json +27 -0
- sec-edgar-scraper.csv +0 -0
- sec-edgar-scraper.jsonl +0 -0
README.md
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pretty_name: "SEC EDGAR Scraper"
|
| 6 |
+
size_categories:
|
| 7 |
+
- 1K<n<10K
|
| 8 |
+
tags:
|
| 9 |
+
- "reapx"
|
| 10 |
+
- "web-scraping"
|
| 11 |
+
- "open-data"
|
| 12 |
+
- "sec-edgar-scraper"
|
| 13 |
+
- "edgar"
|
| 14 |
+
- "filings"
|
| 15 |
+
- "financials"
|
| 16 |
+
- "full-text"
|
| 17 |
+
- "search"
|
| 18 |
+
configs:
|
| 19 |
+
- config_name: default
|
| 20 |
+
data_files:
|
| 21 |
+
- split: train
|
| 22 |
+
path: sec-edgar-scraper.jsonl
|
| 23 |
+
---
|
| 24 |
+
|
| 25 |
+
# SEC EDGAR Scraper
|
| 26 |
+
|
| 27 |
+
Search SEC EDGAR by ticker, CIK, SIC industry code, or full-text phrase and get one structured row per filing, with company classification, period dates, direct document links and optional XBRL financials.
|
| 28 |
+
|
| 29 |
+
| | |
|
| 30 |
+
| --- | --- |
|
| 31 |
+
| Rows in this dataset | 2,691 |
|
| 32 |
+
| Fields | 27 |
|
| 33 |
+
| Collector runs behind it | 64 |
|
| 34 |
+
| Most recent observation | 2026-08-03 |
|
| 35 |
+
| Browsable presentation | [https://reapx.dev/data/sec-edgar-scraper/](https://reapx.dev/data/sec-edgar-scraper/) — 684 entity pages |
|
| 36 |
+
| Run the collector yourself | [https://apify.com/reapx/sec-edgar-scraper](https://apify.com/reapx/sec-edgar-scraper) |
|
| 37 |
+
|
| 38 |
+
## What this is
|
| 39 |
+
|
| 40 |
+
Every row here was returned by a real run of a public collector. Nothing is generated from a
|
| 41 |
+
template over a keyword list: a row exists because a run observed it.
|
| 42 |
+
|
| 43 |
+
A browsable presentation of the subset that carries an addressable `cik` is published as
|
| 44 |
+
684 entity pages at [https://reapx.dev/data/sec-edgar-scraper/](https://reapx.dev/data/sec-edgar-scraper/), one page per entity. **This dataset is
|
| 45 |
+
the larger of the two** — rows whose payload has no field that can address a page are here and
|
| 46 |
+
are not published there.
|
| 47 |
+
|
| 48 |
+
## Provenance
|
| 49 |
+
|
| 50 |
+
Each row carries `_run_id` and `_dataset_id`, naming the collector run that produced it, so any
|
| 51 |
+
row can be traced back to the run that observed it. Rows observed by more than one run are
|
| 52 |
+
deduplicated on content; 0 duplicate observations were collapsed.
|
| 53 |
+
|
| 54 |
+
## Files
|
| 55 |
+
|
| 56 |
+
- `sec-edgar-scraper.jsonl` — one JSON object per row, the canonical form
|
| 57 |
+
- `sec-edgar-scraper.csv` — the same rows flattened; nested values are JSON-encoded within their cell
|
| 58 |
+
so they round-trip
|
| 59 |
+
- `dataset.json` — schema.org `Dataset` metadata
|
| 60 |
+
|
| 61 |
+
## Loading it
|
| 62 |
+
|
| 63 |
+
```python
|
| 64 |
+
from datasets import load_dataset
|
| 65 |
+
ds = load_dataset("reapxdev/sec-edgar-scraper", split="train")
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
+
## A sample of the published entities
|
| 69 |
+
|
| 70 |
+
- [ABBOTT LABORATORIES](https://reapx.dev/data/sec-edgar-scraper/0000001800/)
|
| 71 |
+
- [TRICO BANCSHARES /](https://reapx.dev/data/sec-edgar-scraper/0000356171/)
|
| 72 |
+
- [Theriva Biologics, Inc.](https://reapx.dev/data/sec-edgar-scraper/0000894158/)
|
| 73 |
+
- [ALLIANCEBERNSTEIN L.P.](https://reapx.dev/data/sec-edgar-scraper/0001109448/)
|
| 74 |
+
- [Driveitaway Holdings, Inc.](https://reapx.dev/data/sec-edgar-scraper/0001394638/)
|
| 75 |
+
- [Uber Technologies, Inc](https://reapx.dev/data/sec-edgar-scraper/0001543151/)
|
| 76 |
+
- [Freight Technologies, Inc.](https://reapx.dev/data/sec-edgar-scraper/0001687542/)
|
| 77 |
+
- [Alpine Income Property Trust, Inc.](https://reapx.dev/data/sec-edgar-scraper/0001786117/)
|
| 78 |
+
- [Traeger, Inc.](https://reapx.dev/data/sec-edgar-scraper/0001857853/)
|
| 79 |
+
- [Twin Hospitality Group Inc.](https://reapx.dev/data/sec-edgar-scraper/0002011954/)
|
| 80 |
+
- [M Evo Global Acquisition Corp II](https://reapx.dev/data/sec-edgar-scraper/0002087361/)
|
| 81 |
+
- [BIOGEN INC.](https://reapx.dev/data/sec-edgar-scraper/biib/)
|
| 82 |
+
|
| 83 |
+
## Related
|
| 84 |
+
|
| 85 |
+
- All sources: <https://reapx.dev/data/> · machine-readable index: <https://reapx.dev/llms.txt>
|
| 86 |
+
- The collector is a public Apify Actor; agents reach it through <https://mcp.apify.com>
|
| 87 |
+
|
| 88 |
+
## Licence
|
| 89 |
+
|
| 90 |
+
Collected from public sources. This metadata and the published pages are
|
| 91 |
+
[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/); the underlying records remain under
|
| 92 |
+
the terms of their originating source.
|
dataset.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"@context": "https://schema.org",
|
| 3 |
+
"@type": "Dataset",
|
| 4 |
+
"@id": "https://reapx.dev/data/sec-edgar-scraper/",
|
| 5 |
+
"name": "SEC EDGAR Scraper \u2014 Filings, Financials & Full-Text Search",
|
| 6 |
+
"description": "Search SEC EDGAR by ticker, CIK, SIC industry code, or full-text phrase and get one structured row per filing, with company classification, period dates, direct document links and optional XBRL financials.",
|
| 7 |
+
"url": "https://reapx.dev/data/sec-edgar-scraper/",
|
| 8 |
+
"identifier": "sec-edgar-scraper",
|
| 9 |
+
"license": "https://creativecommons.org/licenses/by/4.0/",
|
| 10 |
+
"creator": {
|
| 11 |
+
"@type": "Organization",
|
| 12 |
+
"name": "reapx",
|
| 13 |
+
"url": "https://reapx.dev"
|
| 14 |
+
},
|
| 15 |
+
"isAccessibleForFree": true,
|
| 16 |
+
"dateModified": "2026-08-03",
|
| 17 |
+
"variableMeasured": "cik",
|
| 18 |
+
"distribution": [
|
| 19 |
+
{
|
| 20 |
+
"@type": "DataDownload",
|
| 21 |
+
"encodingFormat": "text/html",
|
| 22 |
+
"contentUrl": "https://reapx.dev/data/sec-edgar-scraper/"
|
| 23 |
+
}
|
| 24 |
+
],
|
| 25 |
+
"measurementTechnique": "Apify Actor reapx/sec-edgar-scraper",
|
| 26 |
+
"sameAs": "https://apify.com/reapx/sec-edgar-scraper"
|
| 27 |
+
}
|
sec-edgar-scraper.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
sec-edgar-scraper.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|