Extract structured data with Firecrawl: pay per use, no API key
Use Firecrawl from Claude, Claude Code, Cursor, ChatGPT, and other agents through one Cralo balance.
Extract structured data from one public page with Firecrawl using a caller-supplied JSON schema.
Price and execution
- Price
- $0.01
- Pricing model
- Fixed price per successful call
- Execution class
- fast
Limits
No additional limits are published for this tool.
Parameters
Fields firecrawl.extract accepts as JSON input.
urlstring (uri)RequiredPublic page URL to extract structured data from.
promptstringOptionalOptional instructions that guide the extraction.
schemaobjectRequiredA JSON Schema describing the object Firecrawl should extract.
enable_web_searchbooleanOptionalWhen true, Firecrawl may use web search to supplement extraction.
Raw input JSON Schema
{
"type": "object",
"required": [
"url",
"schema"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"pattern": "^https?://",
"description": "Public page URL to extract structured data from."
},
"prompt": {
"type": "string",
"maxLength": 2000,
"minLength": 1,
"description": "Optional instructions that guide the extraction."
},
"schema": {
"type": "object",
"minProperties": 1,
"description": "A JSON Schema describing the object Firecrawl should extract."
},
"enable_web_search": {
"type": "boolean",
"default": false,
"description": "When true, Firecrawl may use web search to supplement extraction."
}
},
"additionalProperties": false
}Returns
Fields a successful firecrawl.extract call returns.
dataobjectRequiredtitlestring | nullRequiredsource_urlstring (uri)Requiredretrieved_atstring (date-time)Required
Raw output JSON Schema
{
"type": "object",
"required": [
"data",
"source_url",
"title",
"retrieved_at"
],
"properties": {
"data": {
"type": "object"
},
"title": {
"type": [
"string",
"null"
]
},
"source_url": {
"type": "string",
"format": "uri"
},
"retrieved_at": {
"type": "string",
"format": "date-time"
}
},
"additionalProperties": false
}Run this tool
Copy this instruction to your agent to set up Cralo and call this tool with the example input.
Set up Cralo by following https://cralo.ai/SKILL.md, then call the firecrawl.extract tool with this input: {"url":"https://example.com","schema":{"type":"object","properties":{"title":{"type":"string"}}},"prompt":"Extract the page title"}Safety notes
- Side Effect
- read_only
- Public Sources Only
- Yes
How this compares to using Firecrawl directly
You do not need a separate Firecrawl account or subscription for this call. Cralo uses one prepaid balance across all tools and shows the per-call price before you run the command.
Related tools
[Browse all tools]- $0.001Extract web page contentFetch and extract readable content from a public HTTP(S) page.Firecrawl
page.extractInstant - $0.001Extract content with ExaExtract clean text, relevant highlights, or summaries from known web pages using Exa. Price is per URL.Exa
exa.contentsInstant - $0.001Map a website with FirecrawlDiscover and filter public URLs on a website using Firecrawl's site mapping API.Firecrawl
firecrawl.mapInstant - $0.002Search the web with FirecrawlSearch the public web with Firecrawl and return normalized results with optional page content.Firecrawl
firecrawl.searchInstant - $0.005Answer from the web with ExaAnswer a question using current web sources and return the supporting citations from Exa.Exa
exa.answerInstant