# FDA Drug Approval Federal Register Scraper

**Use case:** 

Extract FDA drug approval rules and notices from the U.S. Federal Register. Pull titles, dates, agencies, and full text URLs into structured data.

## Input

```json
{
  "maxDocuments": 10,
  "withDetails": true,
  "term": "drug approval",
  "documentTypes": [
    "NOTICE",
    "RULE"
  ],
  "agencies": [
    "food-and-drug-administration"
  ],
  "dateFrom": "2024-01-01"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "documentNumber": {
    "label": "Document Number",
    "format": "text"
  },
  "publicationDate": {
    "label": "Published",
    "format": "text"
  },
  "agencies": {
    "label": "Agencies",
    "format": "array"
  },
  "citation": {
    "label": "Citation",
    "format": "text"
  },
  "htmlUrl": {
    "label": "URL",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Federal Register Rules & Notices Scraper (USA)](https://apify.com/scrapers_lat/federal-register-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/federal-register-scraper) to learn more, explore other use cases, and run it yourself.