Skip to main content

Overview

The filters object allows you to pass parser-specific search parameters when fetching URLs. Filters are defined by each custom web parser and vary by platform — check the individual parser documentation for available filters.
filters
object
A key-value object of filter parameters. The available keys depend on which parser handles the URL. Filters are only applied when the URL matches a parser that supports them.
Filters are only used by custom web parsers that support them. For general web pages or parsers without filter support, the filters object is ignored.

Example

{
  "url": "https://www.linkedin.com/jobs/search",
  "filters": {
    "search_term": "golang developer",
    "location": "San Francisco"
  }
}

Finding Available Filters

Each parser defines its own set of supported filters. See the Custom Web Parsers section for parser-specific filter documentation.