# FDA Drug Approval Rule Data Scraper

**Use case:** 

Extract FDA drug approval rules from the Federal Register. Retrieve detailed documents including titles, dates, and relevant URLs.

## Input

```json
{
  "query": "drug approval final rule",
  "types": [
    "RULE"
  ],
  "agencies": [
    "food-and-drug-administration"
  ],
  "order": "newest",
  "dateFrom": "2024-01-01",
  "dateTo": "2024-12-31",
  "maxResults": 200,
  "proxy": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "documentNumber": {
    "label": "Document Number",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "agencies": {
    "label": "Agencies",
    "format": "text"
  },
  "publicationDate": {
    "label": "Publication Date",
    "format": "text"
  },
  "pageLength": {
    "label": "Page Length",
    "format": "number"
  },
  "citation": {
    "label": "Citation",
    "format": "text"
  },
  "htmlUrl": {
    "label": "HTML URL",
    "format": "link"
  }
}
```

## About this Actor

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