GET /api/companies/
endpoint now supports a view=full
query parameter. This allows users to retrieve the complete company object for each item in the list, restoring access to detailed fields in response to user feedback.isins
field on the Company object was not appearing in the API documentation for the /companies
list and detail endpoints. This has been corrected, and the schema now accurately reflects that isins
is an array of strings./api/filings/
and /api/companies/
now return a simplified "summary" response. This significantly reduces payload size and improves response times for list-based queries. The full object details remain available via the detail endpoints (e.g., /api/filings/{id}/
).markdown_url
field in the /api/filings/{id}/
response now links directly to a nested endpoint (/api/filings/{filing_id}/markdown/
), logically connecting the content to its parent filing.GET /api/countries/
: Returns a list of all supported countries and their ISO codes.GET /api/languages/
: Returns a list of all supported filing languages.GET /api/filings/
endpoint to allow filtering by modification date, useful for data synchronization:updated_date_from
updated_date_to
GET /api/processed-filings/{id}/
endpoint has been removed in favor of the new nested markdown content endpoint for better API design and performance.