Settings
Profile Information
Update Display Name
Change Password
Only available for email/password accounts.
Account
Current Plan
FreeChoose Your Plan
Unlock more compute, API calls, and advanced features. All plans include a 14-day money-back guarantee.
Academic
- 200 lookups/day
- 50 docking jobs/mo
- 10 QSAR + 5 MD + 3 RL
- 1,000 API calls/mo
- 2 API keys
- 10K molecule storage
Pro
- Unlimited lookups
- 200 docking + 50 QSAR
- 20 MD + 15 RL + 10 FEP
- 10,000 API calls/mo
- 5 API keys
- 100K molecule storage
- 12% marketplace fee
Team
- Everything in Pro
- Pooled compute (unlimited)
- 50,000 API calls/mo
- 20 API keys + SSO
- 500K molecule storage
- Team analytics
- 10% marketplace fee
Need custom limits, VPC deployment, or SAML SSO? Contact us for Enterprise
Compute Credits
Never expirePay-as-you-go compute for API and heavy workloads. Volume discounts on larger purchases.
Quick Packs
Custom Amount
Recent Transactions
Payment Method
API Keys
0 / 0Authenticate programmatic access to MolForge. Keys are shown once at creation and are SHA-256 hashed at rest.
mf_...
Active Keys
Quick Start
Use your API key in the X-API-Key header for all authenticated requests.
curl -X POST https://molforge-api.run.app/api/v1/molecules/analyze \
-H "X-API-Key: mf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"query": "aspirin"}'
import requests
API_KEY = "mf_your_key_here"
BASE = "https://molforge-api.run.app/api/v1"
resp = requests.post(
f"{BASE}/molecules/analyze",
headers={"X-API-Key": API_KEY},
json={"query": "aspirin"}
)
print(resp.json())
const API_KEY = "mf_your_key_here";
const BASE = "https://molforge-api.run.app/api/v1";
const resp = await fetch(`${BASE}/molecules/analyze`, {
method: "POST",
headers: {
"X-API-Key": API_KEY,
"Content-Type": "application/json",
},
body: JSON.stringify({ query: "aspirin" }),
});
console.log(await resp.json());
Usage Overview
This billing cycleTrack your compute and API consumption. Limits reset at the start of each billing cycle.
Monthly History
Today's Activity
No Team Yet
Create a team to collaborate with colleagues on molecular research projects.
Create a New Team
Team Name
0 membersMembers
Invite Members
Pending Invites
Your Referral Program
Share MolForge with colleagues. When they sign up using your link, you both benefit!
Referral Stats
Share via
Seller Dashboard
Track your marketplace listings, earnings, and payouts.
My Listings
My Purchases
Platform Administration
ADMINManage users, subscriptions, and platform settings.