DDforDD

DDforDD API

Programmatic read-only access to drug, trial, indication, and financial data.

Quick Start

1

Create an API key

Go to Profile → API Keys and create a new key.

2

Make requests

Include your key in the Authorization header:

curl -H "Authorization: Bearer sa_live_your_key_here" \
  https://ddfordd.skai-line.com/api/v1/drugs?limit=3

Authentication

All API requests require a Bearer token in the Authorization header.

Authorization: Bearer sa_live_your_key_here

Rate Limits

PlanDaily LimitReset
Free100 requests/dayUTC midnight
Pro1,000 requests/dayUTC midnight

Rate limit info is returned in response headers: X-RateLimit-Remaining, X-RateLimit-Reset

Endpoints

GET/api/v1/drugs

Search and list drugs

Query Parameters

indicationFilter by disease/condition
approvalStatusAPPROVED, INVESTIGATIONAL, DISCONTINUED
mechanismMechanism keyword (IL-17, JAK, PD-1)
companyManufacturer name
limitResults per page (default 20, max 100)
offsetPagination offset

Example

curl -H "Authorization: Bearer sa_live_..." \
  "https://ddfordd.skai-line.com/api/v1/drugs?indication=psoriasis&approvalStatus=APPROVED&limit=5"
GET/api/v1/drugs/:slug

Get detailed drug information including targets, trials, patents, and indications

Example

curl -H "Authorization: Bearer sa_live_..." \
  "https://ddfordd.skai-line.com/api/v1/drugs/humira"
GET/api/v1/trials

Search clinical trials

Query Parameters

drugDrug name filter
indicationDisease/condition filter
phasePhase 1, Phase 2, Phase 3, Phase 4
statusCOMPLETED, RECRUITING, etc.
limitResults per page (default 20, max 100)
offsetPagination offset

Example

curl -H "Authorization: Bearer sa_live_..." \
  "https://ddfordd.skai-line.com/api/v1/trials?indication=psoriasis&phase=Phase 3&limit=10"
GET/api/v1/indications

Search indications with epidemiology and linked drugs

Query Parameters

searchSearch by indication name
limitResults per page (default 20, max 100)
offsetPagination offset

Example

curl -H "Authorization: Bearer sa_live_..." \
  "https://ddfordd.skai-line.com/api/v1/indications?search=psoriasis"
GET/api/v1/companies

Company financials (revenue, R&D, market cap)

Query Parameters

tickerStock ticker symbol (ABBV, PFE, LLY)
limitResults per page (default 20, max 50)

Example

curl -H "Authorization: Bearer sa_live_..." \
  "https://ddfordd.skai-line.com/api/v1/companies?ticker=ABBV"

Ready to get started?

Create Your API Key