251ca4d7-cb7b-803d-883d-fe0d24b3c9https://docs.firecrawl.dev/api-reference/endpoint/crawl-post?playground=open
#查看操作记录
http://40.233.18.33:3002/admin/19841122Cy!/queues
#查看操作记录
curl --request GET \
--url http://40.233.18.33:3002/v1/crawl/6e18d18b-51f5-41a7-adf4-4a975bea4c54 \
--header 'Authorization: Bearer 123456789'
#抓取页面
curl --request POST \
--url http://40.233.18.33:3002/v1/crawl \
--header 'Authorization: Bearer 123456789' \
--header 'Content-Type: application/json' \
--data '{
"maxDepth": 2,
"ignoreSitemap": false,
"ignoreQueryParameters": false,
"limit": 10000,
"allowBackwardLinks": false,
"crawlEntireDomain": false,
"allowExternalLinks": false,
"allowSubdomains": false,
"scrapeOptions": {
"formats": [
"markdown"
]
},
"zeroDataRetention": false,
"url": "https://www.3dmgame.com/"
}'
curl --request POST \
--url http://40.233.18.33:3002/v1/map \
--header 'Authorization: Bearer 123456789' \
--header 'Content-Type: application/json' \
--data '{
"ignoreSitemap": false,
"sitemapOnly": false,
"includeSubdomains": true,
"limit": 5000,
"url": "https://www.3dmgame.com/"
}'