FAA Airworthiness Directive (AD) Scraper avatar

FAA Airworthiness Directive (AD) Scraper

Pricing

from $0.20 / 1,000 results

Go to Apify Store
FAA Airworthiness Directive (AD) Scraper

FAA Airworthiness Directive (AD) Scraper

Track FAA Airworthiness Directives in structured JSON/CSV using Federal Register data. Filter by AD number, aircraft make/model, text query, and effective date range. Includes docket IDs, status, action text, references, and source/PDF links.

Pricing

from $0.20 / 1,000 results

Rating

0.0

(0)

Developer

ScrapeWizard

ScrapeWizard

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Scrape FAA Airworthiness Directive publications with structured output for compliance monitoring, fleet risk workflows, and aerospace analytics.

This actor uses the Federal Register public API (FAA agency documents) and enriches each result with per-document detail when enabled.

What it does

  • Searches FAA AD publications
  • Supports filters for:
    • free-text query
    • AD number
    • aircraft make/model
    • effective date range
  • Paginates until maxResults
  • Optionally fetches detail records for richer metadata
  • Outputs normalized records with links and timestamps

Input example

{
"query": "airbus helicopters",
"aircraftMake": "Airbus",
"aircraftModel": "SA330J",
"adNumber": "",
"effectiveDateFrom": "2026-01-01",
"effectiveDateTo": "2026-12-31",
"maxResults": 100,
"fetchDetail": true,
"includeSuperseded": true
}

Output fields

  • adNumber
  • title
  • status
  • publishedDate
  • effectiveDate
  • docketNumber
  • rgl
  • aircraftMake
  • aircraftModel
  • engineOrComponent
  • subject
  • summary
  • complianceRequired
  • actionText
  • references
  • documentUrl
  • sourceUrl
  • lastSeenAt

Revenue packaging notes

  • Primary PPE event should be result-scraped
  • Base run fee can be charged with apify-actor-start
  • Higher-value users benefit from detail mode (fetchDetail=true) and stable IDs/timestamps for recurring monitoring

Known limitations

  • FAA DRS is not currently exposed as a stable public API; this actor uses Federal Register FAA AD publications as the structured source.
  • Aircraft make/model values are derived from title patterns and optional user filters.
  • engineOrComponent may be blank when not explicitly published in structured detail.

Local run

python3.11 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
PATH="$(pwd)/.venv/bin:$PATH" npx apify-cli run --input '{"query":"boeing","maxResults":20,"fetchDetail":true}'