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
}