← Back to Blog

Discover the FDA Approvals API: Track New Oncology Drugs with Ease

September 17, 2026

A variety of colorful pills and tablets scattered on a vivid purple background for healthcare and medicine themes.

Photo by Anna Shvets on Pexels

The FDA Approvals API, part of the free Cure Cancer With AI public API, offers developers a powerful tool to access information about FDA-approved oncology drugs. This endpoint serves a crucial role in the oncology landscape, enabling researchers, healthcare professionals, and developers to stay informed about new treatments that could benefit patients. By providing structured data on drug approvals, the FDA Approvals API simplifies the process of tracking what is newly available and for which cancer indications.

Why This Endpoint Matters

In the ever-evolving field of oncology, new drug approvals can significantly alter treatment protocols and patient outcomes. The FDA Approvals API offers a centralized resource where users can access timely information about these approvals. This is essential for several reasons:

  • Timeliness: Keeping up with new treatments can be overwhelming. The API provides the latest information directly, ensuring users are always aware of newly available therapies.
  • Structured Data: The API returns data in a structured format, making it easier for developers to integrate drug approval information into applications, dashboards, or alerts.
  • Improved Research: By enabling users to filter approvals based on cancer types or specific drugs, the API helps researchers focus their studies and analyses on relevant therapies.

How to Use the FDA Approvals API

The FDA Approvals API can be accessed via a simple GET request at the following endpoint:

GET https://curecancerwithai.com/api/v1/fda-approvals

To authenticate your request, include an "Authorization" header with your API key:

Authorization: Bearer ccw_live_YOUR_KEY

The API accepts several parameters that allow for customized queries:

  • cancerType: Filter results by specific types of cancer.
  • search: Search for specific drugs using their name, generic name, or indication.
  • from/to: Specify approval dates to narrow down results.
  • limit: Set the maximum number of results to return.
  • offset: Use for pagination to retrieve additional results.

The response from the API will include a data array containing key fields such as:

  • id: Unique identifier for each approval.
  • applicationNumber: The application number assigned by the FDA.
  • drugName: The name of the approved drug.
  • genericName: The generic equivalent of the drug.
  • company: The company that developed the drug.
  • approvalDate: The date the drug was approved.
  • cancerTypes: An array of cancer types the drug is approved for.
  • indication: The specific use case for the drug.
  • url: A link to more information about the drug.
  • labelPdfUrl: A link to the drug's label in PDF format.

Here is an example of how to make a request to the FDA Approvals API using JavaScript fetch:

fetch('https://curecancerwithai.com/api/v1/fda-approvals?cancerType=lung&limit=5', {
    method: 'GET',
    headers: {
        'Authorization': 'Bearer ccw_live_YOUR_KEY'
    }
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));

What You Can Build

The FDA Approvals API opens up numerous possibilities for developers looking to enhance oncology-related applications. Here are a few concrete use cases:

  • Oncology Research Tools: Build research applications that track new drug approvals for specific cancer types, enabling researchers to stay current with treatment options.
  • Patient Management Systems: Create alerts for healthcare providers when new therapies are approved, ensuring timely information is shared with patients.
  • Drug Information Portals: Develop user-friendly portals that link drug names to their corresponding label PDFs and additional resources, enhancing patient education.

Get Started for Free

Ready to start leveraging the FDA Approvals API? It's completely free to use! Simply create your free API key at /api-keys, and check out the full documentation at /developers. The free tier allows for 100 requests per hour, making it easy to integrate this valuable data into your applications.

Keep in mind that the information provided by this API is for informational and research purposes only. It does not constitute medical advice, nor does it guarantee any specific outcomes. Always consult a healthcare professional for medical decisions.

With the FDA Approvals API, you can stay at the forefront of oncology advancements and contribute to the ongoing fight against cancer.

To dive deeper into practical AI-for-cancer-research updates, explore our latest blog posts, learn more about our mission, and see how you can support ongoing work on our donations page.