added type to reqs example

This commit is contained in:
rafaelmmiller 2024-12-16 11:46:56 -03:00
parent b6802bc443
commit d8150c6171

View File

@ -19,7 +19,7 @@ Authorization: Bearer {{$dotenv TEST_API_KEY}}
content-type: application/json
{
"url": "firecrawl.dev"
"url": "v"
}
### Check Crawl Status
@ -70,8 +70,8 @@ content-type: application/json
"urls": ["firecrawl.dev"],
"prompt": "What is the title, description and main product of the page?",
"schema": {
"title": "string",
"description": "string",
"mainProduct": "string"
"title": { "type": "string" },
"description": { "type": "string" },
"mainProduct": { "type": "string" }
}
}