Replies: 1 comment
-
Update: S-4 Target Company Linking Feature DevelopmentHi @aman30894! Thank you for raising this issue about extracting target company financials from S-4 filings. I wanted to provide you with a comprehensive update on our investigation and the exciting new feature we've developed as a result. Issue #434 Investigation ResultsWe thoroughly investigated your reported issue and confirmed that this is not a bug in EdgarTools. Here's what we discovered:
So when you extracted the income statement using New Feature: S-4 Target Company LinkingHowever, your use case highlighted an important gap in EdgarTools' M&A analysis capabilities. While we can't extract target company financials directly from S-4 XBRL data, we can provide structured access to target company information and link to their separate SEC filings when applicable. We've developed a comprehensive S-4 Target Company Linking feature that addresses the underlying need for M&A analysis workflows. What This Feature ProvidesAutomated Target Discoveryfrom edgar import Company
# Get S-4 filing
acquirer = Company("ARES") # Ares Acquisition Corp II
s4_filings = acquirer.get_filings(form="S-4")
s4_filing = s4_filings[0]
# Extract target company information automatically
target_info = s4_filing.target_company
print(target_info.name) # "Kodiak Robotics, Inc."
print(target_info.ein) # "82-5086710"
print(target_info.sic_code) # "7373"
print(target_info.incorporation_state) # "Delaware"Technical ApproachOur implementation uses multiple structured data sources within S-4 filings (no regex parsing needed):
Community Feedback NeededWe'd love to hear from the community on this feature proposal:
This feature development was directly inspired by your use case - thank you for highlighting this important M&A analysis workflow! We're excited to make EdgarTools even more powerful for merger and acquisition research. What are your thoughts on this approach? Would this feature design meet your needs for S-4 target company analysis? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to extract financial statements from the following S-4 filing:
https://www.sec.gov/Archives/edgar/data/1747286/000119312525119920/
I used the edgar Python package with the following code:
However, when I validate the extracted income statement against the HTML version of the filing, I notice that only Ares Acquisition Corp’s financial data is being returned—not Kodiak Robotics’.
Could you please clarify:
Link to the HTML filing:
https://www.sec.gov/Archives/edgar/data/1747286/000119312525119920/d948047ds4.htm
Thank you for your guidance.
Beta Was this translation helpful? Give feedback.
All reactions