FinancialFilings Python SDK
The official Python client for the FinancialFilings API.
Access a comprehensive database of financial filings, company information, and industry classifications programmatically.
Installation
pip install financial-reports-generated-client
Quick Start
The SDK is designed to be simple and intuitive. It uses asyncio for high-performance data retrieval.
1. Initialize the Client
You can pass your API key directly or set it as an environment variable FINANCIAL_REPORTS_API_KEY.
import asyncio
from financial_reports_generated_client import FinancialReports
async def main():
# Context manager automatically handles cleanup
async with FinancialReports(api_key="YOUR_API_KEY") as client:
# --- Example 1: List Filings ---
# Get the latest filings, searching for "Volkswagen"
filings = await client.filings.list(
search="Volkswagen",
ordering="-release_datetime",
page_size=5
)
for filing in filings.results:
print(f"{filing.release_datetime}: {filing.title} ({filing.company.name})")
# --- Example 2: Get Company Details ---
# Fetch detailed profile for a specific company ID
company = await client.companies.retrieve(id=123)
print(f"Company: {company.name}, Country: {company.country_code}")
if __name__ == "__main__":
asyncio.run(main())
Access Levels
The API response data depends on your subscription tier.
| Level | Name | Description |
|---|---|---|
| Level 1 | Standard Access | Access to raw PDF/XBRL metadata, company profiles, ISIC classifications, and reference data. |
| Level 2 | Processed Filings | Access to converted content (Markdown/JSON) and full-text search capabilities. |
| Level 3 | Extracted Financials | Access to specific extracted financial line items (Revenue, EBITDA, etc.). |
Documentation
- Full API Reference: https://financialfilings.com/docs
- Support: support@financialreports.eu
Generated by FinancialFilings Engineering.
Release files for financial-reports-generated-client 1.4.79
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| financial_reports_generated_client-1.4.79.tar.gz | 110.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| financial_reports_generated_client-1.4.79-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 377.3 kB
Release files / financial_reports_generated_client-1.4.79.tar.gz
| Download URL | financial_reports_generated_client-1.4.79.tar.gz |
|---|---|
| Size | 110.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
aef9693509bab8b87cee9333920336e583086a0620697d09b8eb7d5343fd27e9
|
|
BLAKE2b-256 checksum How to use checksums |
a3c2e982e84ee4bac840d6dab709f0e4f470f971ce1bb795ac6c139c41c990ca
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / financial_reports_generated_client-1.4.79-py3-none-any.whl
| Download URL | financial_reports_generated_client-1.4.79-py3-none-any.whl |
|---|---|
| Size | 267.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
99c2c4341cbdcf7f08788cd564542e73d901e1170a68b3136fd513606bbdcb91
|
|
BLAKE2b-256 checksum How to use checksums |
e3e2b461db146d83e2e3169f16c154ac98fbfc543e1c8eef50757f13bf967d07
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|