POST https://api.acedata.cloud/webextrator/extract
يقوم بالاستخراج بناءً على /webextrator/render. بالإضافة إلى جميع معلمات واجهة render، يدعم أيضًا:
الاستجابة المتزامنة
/webextrator/render.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
WebExtrator Web Render & Extract 集成指南 - Ace Data Cloud
POST https://api.acedata.cloud/webextrator/extract
يقوم بالاستخراج بناءً على /webextrator/render. بالإضافة إلى جميع معلمات واجهة render، يدعم أيضًا:
| الحقل | النوع | إلزامي | الافتراضي | الوصف |
|---|---|---|---|---|
expected_type | string | ❌ | markdown | نوع الناتج المتوقع: markdown / article / text / links / structured |
enable_llm | boolean | ❌ | false | تفعيل المعالجة اللاحقة باستخدام LLM (مناسب لـ article / structured) |
instruction | string | ❌ | - | تعليمات استخراج LLM، مثل “استخراج عنوان المنتج، السعر، المواصفات” |
{
"success": true,
"task_id": "550e8400-...",
"trace_id": "550e8400-...",
"started_at": "2026-05-02T10:30:00.123Z",
"finished_at": "2026-05-02T10:30:08.789Z",
"elapsed": 8.666,
"data": {
"kind": "extract",
"expected_type": "article",
"url": "https://example.com/post/1",
"title": "مثال على مقال",
"author": "تشانغ سان",
"published_at": "2026-05-01",
"content": "# مثال على مقال\n\nالنص ...",
"summary": "هذا المقال يشرح ..."
}
}
/webextrator/render.
curl -X POST https://api.acedata.cloud/webextrator/extract \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/news/1",
"expected_type": "article",
"enable_llm": true
}'
curl -X POST https://api.acedata.cloud/webextrator/extract \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://shop.example.com/item/123",
"expected_type": "structured",
"enable_llm": true,
"instruction": "استخراج عنوان المنتج، السعر، المخزون، 3 روابط للصور الرئيسية",
"callback_url": "https://your-domain.com/wbx-callback"
}'
هل كانت هذه الصفحة مفيدة؟
