biopharma deals, every week

Stay ahead with expertly summarized M&A and licensing activity.
Browse a filterable directory and receive weekly insights in your inbox — built for biotech BD, investors, and consultants.

What We Do

Biodealroom is a curated directory of biopharma acquisitions and licensing transactions.
We track, organize, and surface the most relevant M&A and partnership deals across the global biotech and pharmaceutical industry — so you don’t have to dig through dozens of press releases or incomplete databases.
Our mission is to make business development activity in life sciences more transparent, accessible, and actionable.

Terms & Conditions

These Terms and Conditions (these "Terms") govern your access to and use of the BioDealRoom platform, including its website, database, newsletters, and related services (collectively, the "Services"), provided by BioDealRoom, Inc. (the "Company," "we," "us," or "our"). By accessing or using the Services, you ("User," "you," or "your") agree to be bound by these Terms, which form a legally binding agreement between you and the Company. If you do not agree to these Terms, you must not access or use the Services.
These Terms are drafted in accordance with applicable laws, including those of the State of California, and are intended to provide clarity and fairness in our mutual dealings. Any disputes arising hereunder shall be resolved exclusively in the state or federal courts located in San Mateo County, California, with the application of California law, without regard to conflict of laws principles.
1. Eligibility and Account Registration
To access certain features of the Services, including the deals database, you must register for an account by providing a valid email address and any other information requested during the signup process. You represent and warrant that: (a) you are at least 18 years of age or the age of majority in your jurisdiction; (b) all information you provide is accurate, complete, and current; and (c) you have the legal capacity to enter into these Terms. The Company reserves the right to suspend or terminate your account at any time if we reasonably believe you have violated these Terms or applicable law.
2. Access to Services
Subject to your compliance with these Terms, the Company grants you a limited, non-exclusive, non-transferable, revocable license to access and use the Services for your personal, non-commercial purposes. This license includes the right to view, search, and download deal data from the database solely for informational purposes. You may not: (i) modify, copy, distribute, or create derivative works based on the Services or any content therein; (ii) use the Services for any commercial purpose without our express written consent; or (iii) attempt to reverse-engineer, decompile, or otherwise access the underlying code or structure of the Services.
The Services are provided on an "as is" and "as available" basis. We make no representations or warranties regarding the accuracy, completeness, or timeliness of the deal data, which is curated from publicly available sources and third-party contributions. You acknowledge that building comparable analyses ("comps") or tracking pharmaceutical deal histories can be complex and time-consuming, and while the Services aim to facilitate this process, ultimate responsibility for verification and use of the data rests with you.
3. User Conduct and Responsibilities
You agree to use the Services in a manner consistent with all applicable laws and regulations. Prohibited activities include, but are not limited to: (a) uploading or transmitting any harmful code, viruses, or malware; (b) engaging in data scraping, automated querying, or any activity that imposes an unreasonable burden on our infrastructure; (c) impersonating any person or entity; or (d) using the Services to harass, defame, or infringe upon the rights of others.
You are solely responsible for maintaining the confidentiality of your account credentials and for all activities occurring under your account. Notify us immediately of any unauthorized access or security breach.
4. Intellectual Property
All content, data, trademarks, and other intellectual property associated with the Services (collectively, "Company IP") are owned by the Company or its licensors. Your use of the Services does not grant you any ownership rights in Company IP. You may not remove, alter, or obscure any copyright, trademark, or proprietary notices.
If you provide feedback, suggestions, or other input regarding the Services ("Feedback"), you grant the Company a perpetual, irrevocable, worldwide, royalty-free license to use, modify, and incorporate such Feedback without attribution or compensation.
5. Privacy and Data Protection
Your use of the Services is also governed by our Privacy Policy, which is incorporated herein by reference. We collect and process personal data in accordance with applicable data protection laws, including the California Consumer Privacy Act (CCPA) and, where relevant, the General Data Protection Regulation (GDPR). By using the Services, you consent to such collection and processing.
6. Disclaimers and Limitation of Liability
TO THE FULLEST EXTENT PERMITTED BY LAW, THE COMPANY DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. WE DO NOT WARRANT THAT THE SERVICES WILL BE UNINTERRUPTED, ERROR-FREE, OR FREE FROM VIRUSES OR OTHER HARMFUL COMPONENTS.
IN NO EVENT SHALL THE COMPANY, ITS AFFILIATES, DIRECTORS, OFFICERS, EMPLOYEES, OR AGENTS BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES ARISING OUT OF OR RELATED TO YOUR USE OF THE SERVICES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR TOTAL LIABILITY TO YOU SHALL NOT EXCEED ONE HUNDRED U.S. DOLLARS ($100).
7. Indemnification
You agree to indemnify, defend, and hold harmless the Company and its affiliates from any claims, liabilities, damages, losses, and expenses (including reasonable attorneys' fees) arising from: (a) your use of the Services; (b) your violation of these Terms; or (c) your infringement of any third-party rights.
8. Termination
We may terminate or suspend your access to the Services at any time, with or without cause or notice, including for violation of these Terms. Upon termination, your license to use the Services ends immediately, and you must cease all access.
9. Modifications to Terms
The Company reserves the right to modify these Terms at any time. We will provide notice of material changes via email or through the Services. Your continued use after such notice constitutes acceptance of the modified Terms.
10. Miscellaneous
These Terms constitute the entire agreement between you and the Company regarding the Services. If any provision is held invalid or unenforceable, the remaining provisions shall remain in full force. No waiver of any term shall be deemed a further or continuing waiver. These Terms shall be governed by the laws of the State of California, without regard to conflicts of law principles.
For questions regarding these Terms, please contact us at [email protected].

Contact Us

Partner with Biodealroom
Reach an engaged audience of biotech and pharma decision-makers.
Sponsor the weekly TWiBD newsletter or promote your services alongside our curated deal insights and directory.
💼 Investment banks • Consulting firms • Legal advisors • Data providers📬 Interested in sponsoring?
Drop us a note — we’ll share audience metrics, sponsorship options, and pricing.

[email protected]

Access BioDealRoom Database

Get Free Access to the BioDealRoom Database

Join 1,000+ BD and strategy pros using our curated biopharma deal database.

document.addEventListener('DOMContentLoaded', () => { const { createClient } = supabase; const supabaseUrl = 'https://sykkzyuqhpwhhsrlvyhx.supabase.co'; const supabaseKey = 'sb_publishable_CYwLto-G4gLpFduwU9_zqQ_cDL9F35U'; const supabaseClient = createClient(supabaseUrl, supabaseKey); async function signUp() { const email = document.getElementById('email').value.trim(); const messageDiv = document.getElementById('message'); if (email.endsWith('@gmail.com')) { messageDiv.textContent = 'Please use a non-Gmail email address.'; messageDiv.className = 'error'; return; } messageDiv.textContent = 'Sending confirmation...'; messageDiv.className = ''; const { data, error } = await supabaseClient.auth.signUp({ email: email, options: { emailRedirectTo: 'https://dealdb.biodealroom.com' } }); if (error) { messageDiv.textContent = 'Error: ' + error.message; messageDiv.className = 'error'; } else { messageDiv.textContent = 'Check your email to confirm your address!'; messageDiv.className = ''; } } document.getElementById('signup-btn').addEventListener('click', signUp); });