Home Chat CryoPT.AI Pricing API Profile

CryoPT.AI API Access

Integrate our powerful AI investment advisor into your own applications. Get programmatic access to CryoAI, WarrenAI, and BurryAI.

Fast Responses

Sub-second response times with streaming support

Secure Access

API key authentication with rate limiting

Full Documentation

Comprehensive guides and code examples

Personal

For individual developers

$ 149 /month
  • Access to all 3 AI advisors
  • 1,000 API calls/month
  • RESTful API endpoints
  • Full documentation access
  • Email support
  • Personal projects only

Quick Preview

// Example: Get investment advice from CryoAI
const response = await fetch('https://api.cryopt.ai/v1/chat', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    advisor: 'cryo',
    message: 'Should I invest in AAPL?'
  })
});

const data = await response.json();
console.log(data.response);