Skip to content
Developer Platform

Build with the AXIFI 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
AXIFI 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 Ready 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

AXIFI 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

AXIFI 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('/api/v1/compounds/bpc-157', {
  headers: {
    'X-API-Key': 'axifi_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('/api/v1/tools/bloodwork/analyze', {
  method: 'POST',
  headers: {
    'X-API-Key': 'axifi_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

All plans include your monthly credit allowance. Use it to call any endpoint. Overage charges apply at a discounted rate if you exceed your monthly credits.

API Starter
$29/month

$75/mo in credits

For hobbyists and side projects

  • $75 credit/month included
  • 1,000 requests/day
  • 20% off overage rates
  • Basic analytics
  • Community support
Most Popular
API Developer
$79/month

$250/mo in credits

For serious builders

  • $250 credit/month included
  • 5,000 requests/day
  • 30% off overage rates
  • Full analytics dashboard
  • Priority support
API Growth
$349/month

$1200/mo in credits

For scaling applications

  • $1,200 credit/month included
  • 25,000 requests/day
  • 40% off overage rates
  • Advanced analytics
  • Dedicated support
  • Webhook integrations
API Scale
$999/month

$4000/mo in credits

For high-volume production

  • $4,000 credit/month included
  • 100,000 requests/day
  • 50% off overage rates
  • Real-time analytics
  • 24/7 dedicated support
  • Custom rate limits available
  • SLA guarantee
How Credits Work

Monthly Credit Allowance

  • Starter: $75/month in credits
  • Developer: $250/month in credits
  • Growth: $1,200/month in credits
  • Scale: $4,000/month in credits

Each API call deducts from your credit balance

Every endpoint call costs a specific amount of credits. Your included monthly credits cover most typical usage. Unused credits do not roll over to the next month.

Overage Discounts

  • Starter: 20% off retail (pay 80%)
  • Developer: 30% off retail (pay 70%)
  • Growth: 40% off retail (pay 60%)
  • Scale: 50% off retail (pay 50%)
Endpoint Rate Card (Retail)

Cost per API call (before tier discounts)

/api/compound-lookupLookup-heavy
$0.004
/api/drug-checkDrug interaction
$0.010
/api/outcomes-queryOutcomes data
$0.020
/api/chatGPT-4o mini
$0.050
/api/research-searchClaude 3.5 Sonnet
$0.100
/api/protocol-builderProtocol generation
$0.100
/api/nutrition-aiAI analysis
$0.160
/api/inbody-analysisBody comp analysis
$0.160
/api/stack-builderGPT-4o generation
$0.200
/api/doc-qaDocument RAG
$0.280
/api/lab-analysisLab interpretation
$0.350
/api/bio-ageMulti-biomarker
$0.430
/api/scribeAudio transcription
$0.580
Daily Request Rate Limits

To maintain service stability, each API key has a daily request limit. These limits reset at 00:00 UTC each day.

Starter

1,000 requests/day

Developer

5,000 requests/day

Growth

20,000 requests/day

Scale

100,000 requests/day

Pricing Examples
See how costs scale based on your usage pattern

Startup Dev (100 Lab Analyses + 50 Chats)

100 × $0.35 (lab-analysis) = $35

50 × $0.05 (chat) = $2.50

Total API Cost (Retail)

$37.50

Recommended: Starter

Covered by monthly credits

Growth Company (200 Scribe + 500 Lab + 1000 Chat)

200 × $0.58 (scribe) = $116

500 × $0.35 (lab-analysis) = $175

1,000 × $0.05 (chat) = $50

Total API Cost (Retail)

$341

Recommended: Developer ($250 credits)

$341 usage with $250 credits = $91 overage × 0.70 = $63.70 extra

High Volume (500 Scribe + 2000 Lab + 5000 Chat)

500 × $0.58 (scribe) = $290

2,000 × $0.35 (lab-analysis) = $700

5,000 × $0.05 (chat) = $250

Total API Cost (Retail)

$1,240

Recommended: Growth ($1,200 credits)

$40 overage × 0.60 (40% off) = $24 extra/month

Built For

See how developers are using the AXIFI 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.

API Sandbox Environment

Test your integration risk-free in our sandbox environment before going to production

Getting Started with Sandbox

1. Create Free Account

Sign up for a developer account with the Sandbox tier - no credit card required.

2. Generate API Key

Go to your dashboard and create an API key. Use it to authenticate all requests.

3. Test Endpoints

Use our interactive sandbox to explore endpoints and see live examples.

4. Upgrade When Ready

Move to production with a paid tier when you're ready to launch.

Sandbox Features
  • Limited Credits: Test all endpoints with included sandbox credits
  • Mock Data: Realistic test data for all endpoints
  • Interactive Docs: Try-it-now buttons for every endpoint
  • Rate Limits: Same limits as production for accurate testing
  • Usage Dashboard: Track sandbox requests and credits
  • No Billing: Unlimited testing within sandbox credits
Sandbox Guide

Learn how to set up and use the sandbox environment

API Reference

Complete API documentation with examples

Troubleshooting

Common issues and solutions for developers

Ready to Build?

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