Skip to main content

Java

Firecrawl Java SDK is a wrapper around the Firecrawl API to help you easily turn websites into markdown.
3 min read

Installation#

The official Java SDK is maintained in the Firecrawl monorepo at apps/java-sdk.

To install the Firecrawl Java SDK, add the dependency from Maven Central:

Note
Requires Java 11 or later.

Usage#

  1. Get an API key from firecrawl.dev
  2. Set the API key as an environment variable named FIRECRAWL_API_KEY, or pass it with FirecrawlClient.builder().apiKey(...)

Here is a quick example using the current SDK API surface:

Scraping a URL#

To scrape a single URL, use the scrape method.

Parsing uploaded files#

The latest Java SDK package (com.firecrawl:firecrawl-java) supports direct file uploads to /v2/parse. parse does not support changeTracking or browser-only options like screenshot, branding, actions, waitFor, location, and mobile.

Java

JSON Extraction#

Extract structured JSON with JsonFormat via the scrape endpoint:

Crawling a Website#

To crawl a website and wait for completion, use crawl.

Start a Crawl#

Start a job without waiting using startCrawl.

Checking Crawl Status#

Check crawl progress with getCrawlStatus.

Cancelling a Crawl#

Cancel a running crawl with cancelCrawl.

Mapping a Website#

Discover links on a site using map.

Searching the Web#

Search with optional search settings using search.

Batch Scraping#

Scrape multiple URLs in parallel using batchScrape.

Agent#

Run an AI-powered agent with agent.

With a JSON schema for structured output:

Usage & Metrics#

Check concurrency and remaining credits:

Async Support#

Async variants are built in and return CompletableFuture.

Browser#

The Java SDK includes Browser Sandbox helpers.

Create a Session#

Execute Code#

Scrape-Bound Interactive Session#

Use a scrape job ID to run follow-up browser code in the same replayed context:

  • interact(...) runs code in the scrape-bound browser session (and initializes it on first use).
  • stopInteraction(...) explicitly stops the interactive session when you are done.

List & Close Sessions#

Configuration#

FirecrawlClient.builder() supports the following options:

OptionTypeDefaultDescription
apiKeyStringFIRECRAWL_API_KEY env var or firecrawl.apiKey system propertyYour Firecrawl API key
apiUrlStringhttps://api.firecrawl.dev (or FIRECRAWL_API_URL)API base URL
timeoutMslong300000HTTP request timeout in ms
maxRetriesint3Automatic retries for transient failures
backoffFactordouble0.5Exponential backoff factor in seconds
asyncExecutorExecutorForkJoinPool.commonPool()Custom executor for async methods
httpClientOkHttpClientBuilt from timeoutMsPre-configured OkHttpClient instance

Custom HTTP Client#

You can pass a pre-configured OkHttpClient to control connection pooling, interceptors, SSL configuration, proxy settings, and any other OkHttp feature. When provided, the timeoutMs setting is ignored in favor of the client's own configuration.

Error Handling#

The SDK throws runtime exceptions under com.firecrawl.errors.

Are you an AI agent that needs a Firecrawl API key? See firecrawl.dev/agent-onboarding/SKILL.md for automated onboarding instructions.