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
}