Quickstart

From zero to your first agent call in under two minutes.

1. Mint an API key

Pick up an API key from here: platform.frontwind.ai/api-keys. You can also open Settings in the app and click Generate new key. The raw key is shown exactly once — copy it somewhere safe. Keys look like:

fw_live_a1b2c3...d4e5f6

2. Make your first call

Run the Competitive Landscaping pipeline for an indication. The HTTP request blocks until the pipeline finishes (typically 3–10 minutes), then returns the structured drug table:

curl -X POST https://api.frontwind.ai/v1/agents/competitive-landscaping \
  -H "Authorization: Bearer fw_live_..." \
  -H "Content-Type: application/json" \
  -d '{"query": "TROP2 ADC in NSCLC"}'

3. Inspect the response

{
  "ok": true,
  "agent": "competitive-landscaping",
  "run_id": "abc-123",
  "data": {
    "drugs": [
      {
        "drug_name": "Datopotamab deruxtecan",
        "target": "TROP2",
        "modality": "ADC",
        "stage": "PHASE3",
        "company": "Daiichi Sankyo / AstraZeneca"
      }
    ],
    "pipeline_summary": "...",
    "patent_rows": []
  },
  "elapsed_s": 312.4
}

Next steps