POST
$0.06 default
/scrapeDescription
Scrape a single URL into markdown, HTML, summary, screenshot or other Firecrawl formats.
Pricing
$0.06 default
Request schema
{
"properties": {
"formats": {
"items": {
"type": "string"
},
"type": "array"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}Response schema
{
"properties": {
"data": {
"type": "object"
},
"success": {
"type": "boolean"
}
},
"type": "object"
}Example request
{
"formats": [
"markdown"
],
"url": "https://example.com"
}Example response
{
"data": {
"markdown": "# Example Domain",
"metadata": {
"title": "Example Domain"
}
},
"success": true
}