Research Tools

Explore our toolset to accelerate your drug discovery process

API服務

透過RESTful API存取我們的資料庫,將藥物數據整合到您的應用中。

  • 全面的藥物、標的和臨床試驗數據API
  • 每日更新的全球臨床試驗數據
  • 支援Python、JavaScript、Java等多語言SDK
  • 99.9%服務可用性保障
curl -X GET "https://api.codedrug.com/v2/drugs" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

# Response
{
  "data": [
    {
      "id": "DRUG001",
      "name": "Aspirin",
      "genericName": "Acetylsalicylic acid",
      "indications": ["Pain", "Fever", "Inflammation"],
      "status": "approved"
    }
  ],
  "total": 10000,
  "page": 1,
  "perPage": 20
}