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 content-type: application/json
{ {
"url": "firecrawl.dev" "url": "v"
} }
### Check Crawl Status ### Check Crawl Status
@ -70,8 +70,8 @@ content-type: application/json
"urls": ["firecrawl.dev"], "urls": ["firecrawl.dev"],
"prompt": "What is the title, description and main product of the page?", "prompt": "What is the title, description and main product of the page?",
"schema": { "schema": {
"title": "string", "title": { "type": "string" },
"description": "string", "description": { "type": "string" },
"mainProduct": "string" "mainProduct": { "type": "string" }
} }
} }