Skip to content
Developer Platform

Build with the RT API

Integrate regenerative medicine research, AI assistance, and clinical protocols into your applications. Access 150+ compounds, outcome insights, and our AI assistant.

API Capabilities

Everything you need to build regenerative medicine features into your application

Compound Database
Access 150+ compounds with mechanisms, dosing, and safety data
RT AI Integration
Embed our AI assistant directly into your application
Semantic Search
Search across all research content with natural language
Outcome Insights
Aggregate anonymous outcome data from real users
Webhooks
Real-time event notifications for your systems
Data Export
Bulk export in CSV and JSON formats

RESTful API v1

Our API follows REST conventions with predictable URLs, JSON responses, and standard HTTP methods. All endpoints are versioned for stability.

API Key Authentication

Secure access with scoped API keys

Rate Limiting

Tiered limits with burst support

Enterprise Security

SOC 2 compliant infrastructure

Real-time Webhooks

Event notifications for your systems

Available Endpoints
Core DataStarter+
GET/api/v1/compounds

List all compounds

GET/api/v1/compounds/:slug

Get compound details

GET/api/v1/monographs

List research monographs

GET/api/v1/documents

List documents

GET/api/v1/search

Semantic search

POST/api/v1/chat

RT AI chat

Tools APIDeveloper+
POST/api/v1/tools/inbody/analyze

InBody scan analysis

POST/api/v1/tools/bloodwork/analyze

Lab results analysis

POST/api/v1/tools/interactions/check

Drug interactions

POST/api/v1/tools/macros/calculate

Macro calculator

POST/api/v1/tools/bioage/calculate

Bio-age calculation

InsightsGrowth+
GET/api/v1/insights

Aggregate outcome data

POST/api/v1/webhooks

Create webhook

POST/api/v1/chat/stream

Streaming AI chat

Bulk & ExportScale+
POST/api/v1/batch/compounds

Batch compound fetch

GET/api/v1/export/compounds

Export to CSV/JSON

GET/api/v1/providers

Provider network

EnterpriseEnterprise
POST/api/v1/embed/chat

White-label chat widget

POST/api/v1/agent/research

RT Agent mode

GET/api/v1/sync/full

Full database sync

Quick Start

Get started with just a few lines of code

example.ts
// Fetch compound information
const response = await fetch('https://api.regentherapy.com/v1/compounds/bpc-157', {
  headers: {
    'X-API-Key': 'rthub_your_api_key_here',
    'Content-Type': 'application/json'
  }
});

const compound = await response.json();
console.log(compound.data.name);        // "BPC-157"
console.log(compound.data.mechanism);   // Detailed mechanism of action
console.log(compound.meta.credits_used); // Credits consumed

// Analyze bloodwork with Tools API
const labResponse = await fetch('https://api.regentherapy.com/v1/tools/bloodwork/analyze', {
  method: 'POST',
  headers: {
    'X-API-Key': 'rthub_your_api_key_here',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    lab_results: [
      { name: 'Total Testosterone', value: 650, unit: 'ng/dL' },
      { name: 'Vitamin D', value: 45, unit: 'ng/mL' }
    ],
    include_optimal_ranges: true
  })
});

const analysis = await response.json();
console.log(analysis.data.biomarkers);  // Analyzed markers with status
console.log(analysis.data.recommendations); // AI-powered recommendations

API Pricing

Simple, transparent pricing that scales with your usage

Free
Free

5 uses/mo requests

Basic access to try our tools

  • Widget integration
  • Basic analytics
  • Community support
  • RT branding
Most Popular
Pro
$29/month

100 uses/mo requests

Full access to all health analysis tools

  • All widget types
  • Full analytics dashboard
  • Priority support
  • Remove RT branding
  • Custom styling
Clinic
$99/month

500 uses/mo requests

Professional clinic access with API

  • Everything in Pro
  • Full API access
  • Team accounts (up to 5)
  • White-label option
  • Dedicated support
Enterprise
$499/month

Unlimited requests

White-label solution for organizations

  • Everything in Clinic
  • On-premise option
  • SSO integration
  • SLA guarantee
  • Custom AI training
  • Dedicated account manager

Built For

See how developers are using the RT API

Health Apps
Build supplement and peptide tracking features with accurate compound data.
Telehealth Platforms
Give clinicians instant access to regenerative medicine research.
Research Tools
Power clinical research with comprehensive compound databases.
E-commerce
Enhance product pages with detailed compound information.

Ready to Build?

Start with our free Sandbox tier and upgrade as you grow. No credit card required.

Hi!