واجهة بحث الكيمياء واكتشاف الأدوية
استعلم عن نشاط ChEMBL الحيوي (IC50/Ki/Kd/EC50) وبُنى وخصائص PubChem وروابط الهدف-المرض في Open Targets من نقطة نهاية واحدة. JSON مهيّأ مسبقًا لاكتشاف الأدوية والمعلوماتية الكيميائية والأبحاث الطبية الحيوية المدعومة بالذكاء الاصطناعي.
جرّب بحث الكيمياء مباشرة
أدخل مفتاح API الخاص بك ونفّذ استعلامًا حقيقيًا على نقطة النهاية المباشرة.
لا تملك مفتاح API؟
سجّل الدخول إلى حسابك لإنشاء وإدارة مفاتيح API.
Integration guide
Copy a snippet, replace your API key, run. Works in any HTTP client — examples below in cURL, JavaScript, and Python.
/api/search/chemistryhttps://www.apipick.comبحث دلالي عبر ChEMBL وPubChem وOpen Targets. يُعيد سجلات مرتّبة مع روابط مصدر جاهزة لـ LLM في المرحلة التالية.
querystringrequiredNatural-language search query
max_num_resultsintegeroptional1–5, default 5
relevance_thresholdnumberoptional0.0–1.0 quality filter
country_codestringoptionalISO country code (e.g. US, GB)
start_datestringoptionalISO date YYYY-MM-DD
end_datestringoptionalISO date YYYY-MM-DD
curl -X POST "https://www.apipick.com/api/search/chemistry" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"query": "Kinase inhibitor selectivity for EGFR",
"max_num_results": 5,
"country_code": "US",
"start_date": "2026-01-01"
}'{
"query": "Kinase inhibitor selectivity for EGFR",
"results": [
{
"title": "Example result",
"url": "https://example.com/article",
"snippet": "Short excerpt of the page content…",
"source_type": "web",
"published_at": "2026-04-15",
"score": 0.92
}
],
"result_count": 1,
"credits_used": 30,
"remaining_credits": 99
}Rate limits
Throttling is per API key, sliding 60-second window. Hit the limit and you get a clean 429 with a Retry-After header.
60req/min
Per API key, per endpoint. Sliding 60-second window.
3concurrent
Max simultaneous in-flight requests per API key.
X-RateLimit-LimitMaximum requests allowed per minuteX-RateLimit-RemainingRequests remaining in the current windowX-RateLimit-ResetSeconds until the current window resetsRetry-AfterSeconds to wait before retrying (only on 429)HTTP/1.1 429 Too Many Requests
Retry-After: 12
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 12
{
"error": "rate_limit_exceeded",
"message": "Rate limit exceeded: 60 requests/minute per API key. Retry after 12s.",
"retry_after": 12
}الأسئلة الشائعة
لماذا تبلغ التكلفة 30 رصيدًا لكل طلب؟
ChEMBL وPubChem وOpen Targets مجموعات بيانات علمية كبيرة ومنظَّمة تتطلب صيانة فهرس مستمرة، لذا تُسعَّر نقطة النهاية بـ 30 رصيدًا (≈ 0.03 دولار لكل طلب)، جزء يسير من منصّات المعلوماتية الكيميائية المخصّصة.
ما المصادر المُغطّاة؟
ChEMBL (النشاط الحيوي: IC50/Ki/Kd/EC50)، وPubChem (أكثر من 100 مليون بنية وخاصية كيميائية)، وOpen Targets (روابط الهدف-المرض والتحقق). تُستعلم الثلاثة على التوازي.
هل يمكنني البحث حسب المركّب أو الهدف؟
نعم. مرّر اسم مركّب أو هدفًا/جينًا أو استعلامًا بلغة طبيعية مثل «انتقائية مثبطات كيناز EGFR»، وترتّب نقطة النهاية أكثر السجلات صلة.
التصفية حسب التاريخ؟
نعم. مرّر start_date وend_date بصيغة YYYY-MM-DD لتحديد نافذة معينة.
مخطط الأداة لـ OpenAI / Claude؟
GET /api/search/chemistry/tool-schema يُعيد تعريفات جاهزة للصق لدالة OpenAI واستخدام أداة Claude.