# FCC Filing Search by Docket and Text

**Use case:** 

Search FCC filings for a docket and full-text term. Get filing IDs, filer details, dates, document links, and source URLs.

## Input

```json
{
  "proceedings": [
    "WC 23-123"
  ],
  "fullText": "broadband",
  "retrievalMode": "full",
  "orderBy": "receivedDate",
  "maxItems": 25
}
```

## Output

```json
{
  "filingId": {
    "label": "Filing ID",
    "format": "string"
  },
  "proceeding": {
    "label": "Proceeding",
    "format": "string"
  },
  "filingType": {
    "label": "Filing type",
    "format": "string"
  },
  "filingTitle": {
    "label": "Filing title",
    "format": "string"
  },
  "filer": {
    "label": "Filer",
    "format": "string"
  },
  "filerLocation": {
    "label": "Filer location",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "lawFirm": {
    "label": "Law firm",
    "format": "string"
  },
  "fccBureau": {
    "label": "FCC bureau",
    "format": "string"
  },
  "receivedDate": {
    "label": "Received date",
    "format": "string"
  },
  "disseminationDate": {
    "label": "Dissemination date",
    "format": "string"
  },
  "documentUrl": {
    "label": "Document URL",
    "format": "string"
  },
  "documentCount": {
    "label": "Document count",
    "format": "integer"
  },
  "pageCount": {
    "label": "Page count",
    "format": "integer"
  },
  "viewingStatus": {
    "label": "Viewing status",
    "format": "string"
  },
  "textMatchSnippets": {
    "label": "Text match snippets",
    "format": "array"
  },
  "matchedProceeding": {
    "label": "Matched proceeding",
    "format": "string"
  },
  "changeStatus": {
    "label": "Change status",
    "format": "string"
  },
  "source.url": {
    "label": "Source URL",
    "format": "string"
  },
  "source.jurisdiction": {
    "label": "Jurisdiction",
    "format": "string"
  },
  "source.retrievedAt": {
    "label": "Retrieved at",
    "format": "string"
  },
  "source.confidence": {
    "label": "Source confidence",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [FCC ECFS Filings](https://apify.com/maximedupre/fcc-ecfs) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/fcc-ecfs) to learn more, explore other use cases, and run it yourself.