| 📚 Documentation Index | ⬅️ Back to Main README |
/health
/api/execute
{
"url": "https://example.com",
"data": "instruction or query",
"visual_mode": false,
"stealth_mode": false,
"captcha_solver": false,
"use_bql": false,
"headers": {"Accept-Language": "pl-PL,pl;q=0.9"}
}
{
"success": true,
"result": {"...": "..."},
"screenshots": ["screenshots/domain/step_0_xxx.png"],
"steps_taken": 3,
"run_log": "logs/run-YYYYMMDD-HHMMSS.md",
"timestamp": "2025-11-24T08:27:36.528Z"
}
/api/models
/api/screenshot/<filename>
Accept-Language to influence content language (examples send this automatically if ACCEPT_LANGUAGE is defined).curl -sS -X POST "$CURLLM_API_HOST/api/execute" \
-H 'Content-Type: application/json' \
-d '{"url":"https://example.com","data":"extract all links"}' | jq .
examples/node_api_example.jsexamples/php_api_example.php