openbb-filingpulse
FilingPulse provider extension for the OpenBB Platform: SEC EDGAR Form 4 insider transactions as normalized data.
FilingPulse is data infrastructure — filings as filed with EDGAR, normalized into one stable JSON schema. It does not interpret filings, and nothing here is investment advice.
Install
pip install openbb-filingpulse
The OpenBB Platform discovers the provider automatically. If you use the Python interface, rebuild it once after installing:
import openbb
openbb.build()
Credentials
Get a free API key (no card required) at filingpulse.io/signup.html, then:
from openbb import obb
obb.user.credentials.filingpulse_api_key = "fp_..."
or add "filingpulse_api_key": "fp_..." to ~/.openbb_platform/user_settings.json.
Usage
from openbb import obb
# Latest insider transactions for a symbol
result = obb.equity.ownership.insider_trading(
symbol="AAPL", provider="filingpulse", limit=100
)
df = result.to_df()
# A fixed, reproducible window (maps to the API's since=/until= filters)
result = obb.equity.ownership.insider_trading(
symbol="KMI",
provider="filingpulse",
start_date="2026-07-01",
end_date="2026-07-31",
)
# Amendments only
result = obb.equity.ownership.insider_trading(
symbol="CIB", provider="filingpulse", form_type="4/A"
)
Data notes
- One row per transaction leg — a filing's Table I (non-derivative) and
Table II (derivative) legs each become a row;
is_derivativetells them apart andaccessiongroups the legs of one filing. Holdings-only filings report no transactions and yield no rows. limitcounts rows (legs), not filings. The fetcher pages the API until it has enough.- Numbers are coerced from as-filed strings. EDGAR accepts malformed
values; anything that does not parse is
None, never a guess. For the exact as-filed strings, use the REST API directly. - Multi-owner filings (common for funds) show the first reporting owner;
additional_ownerscarries how many more are on the filing. filing_dateis the date EDGAR accepted the filing;transaction_dateis per leg, as filed.
Rate limits
The free tier serves 2,500 requests/month at 10 req/min. One fetcher call uses one API request per 200 filings paged. Paid tiers at filingpulse.io/#pricing.
Links
- Docs: https://filingpulse.io/docs.html
- Dataset status: https://filingpulse.io (live counts)
- Support: keys@filingpulse.io
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openbb_filingpulse-0.1.0.tar.gz.
File metadata
- Download URL: openbb_filingpulse-0.1.0.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08dd80c79208085e834651d81b26a7cf7d89552159bf235f8c05170a14878998
|
|
| MD5 |
2eeb39e5296bd348809f1ca349df80f1
|
|
| BLAKE2b-256 |
24d94e1a9592a209d3ba1d288624e79b75a68cf854eeb850dd0828532a587e0a
|
File details
Details for the file openbb_filingpulse-0.1.0-py3-none-any.whl.
File metadata
- Download URL: openbb_filingpulse-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64da4c38fb997f16bd9bff6229791340b2491636b4b5934983c806dc9c0380ef
|
|
| MD5 |
790f1a191bc0b009fd71c5585c9a276e
|
|
| BLAKE2b-256 |
99ee3178419b80ce94abdfaf6765ab4cb23f54b03524b8488f577bf36cb6313f
|