Retrieve Filing History (Audit Trail)
Run in Apidog
Access Level Required: Requires Standard Access (Level 1) .
Retrieve a point-in-time audit trail of material changes made to this filing (e.g., classification or status updates). Request Code Samples
curl --location 'https://api.financialreports.eu/filings//history/' \
--header 'x-api-key;' Responses Success. Returns a paginated list of historical changes, ordered newest first.
{
"count" : 123 ,
"next" : "http://api.example.org/accounts/?page=4" ,
"previous" : "http://api.example.org/accounts/?page=2" ,
"results" : [
{
"history_id" : 0 ,
"history_date" : "2019-08-24T14:15:22.123Z" ,
"history_type" : "string" ,
"changed_by" : "string" ,
"changes" : {
"property1" : "string" ,
"property2" : "string"
}
}
]
}
Modified at 2026-05-08 10:04:35