# FCC ASR Registration Lookup Extractor

**Use case:** 

Look up exact FCC ASR tower registrations and export joined location, status, FAA, and owner details.

## Input

```json
{
  "states": [
    "TX"
  ],
  "registrationNumbers": [
    "1000019"
  ],
  "maxItems": 10
}
```

## Output

```json
{
  "registrationNumber": {
    "label": "Registration number",
    "format": "string"
  },
  "statusLabel": {
    "label": "Status",
    "format": "string"
  },
  "structureCity": {
    "label": "Structure city",
    "format": "string"
  },
  "structureState": {
    "label": "Structure state",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "overallHeightAboveGroundMeters": {
    "label": "Overall height AGL (m)",
    "format": "number"
  },
  "structureTypeCode": {
    "label": "Structure type",
    "format": "string"
  },
  "ownerName": {
    "label": "Owner",
    "format": "string"
  },
  "faaStudyNumber": {
    "label": "FAA study number",
    "format": "string"
  },
  "dateIssued": {
    "label": "Date issued",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [FCC ASR Towers Scraper](https://apify.com/automation-lab/fcc-asr-towers-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/fcc-asr-towers-scraper) to learn more, explore other use cases, and run it yourself.