Command Palette

Search for a command to run...

Public Data API

Access Vitaei's research data, molecule information, and clinical trial data programmatically.

Authentication

The Vitaei public API is open and requires no authentication. All three endpoints are read-only and available to anyone.

Base URL: https://vitaei.com/v1

Endpoints

GET/v1/molecules

List all tracked molecules with evidence tiers and pricing.

Filters: tier, hallmark, q, limit

curl "https://vitaei.com/v1/molecules?tier=II&limit=5"
GET/v1/research

Search peer-reviewed research papers by keyword, journal, or hallmark.

Filters: journal, source, hallmark, q, limit

curl "https://vitaei.com/v1/research?q=NAD&journal=Nature"
GET/v1/trials

Access clinical trial data from ClinicalTrials.gov integrated with Vitaei's analysis.

Filters: molecule, status, phase, q, limit

curl "https://vitaei.com/v1/trials?molecule=Rapamycin&status=Recruiting"

Rate Limiting

The public API is currently open with no rate limits. Please be considerate with request volume. Bulk data access and commercial integrations should contact [email protected].

Example Response

All endpoints return JSON with total, count, and data fields.

{
  "total": 247,
  "count": 5,
  "data": [
    {
      "id": 8,
      "name": "NMN",
      "class": "NAD+ precursor",
      "tier": "II",
      "hallmarks": ["07", "08"],
      "trials": 48,
      "dose": "250–500 mg",
      "price": "$1.20",
      "vendor": "Renue By Science"
    }
  ]
}

Need help?

Email us at [email protected] or visit our developer documentation.