Gelt AI API

Powerful AI research capabilities for your applications

Enterprise-Ready Features

Lightning Fast

Sub-100ms response times with global edge network

Enterprise Security

SOC 2 compliant with end-to-end encryption

Global Scale

99.9% uptime SLA with multi-region redundancy

Real-time Updates

WebSocket support for live data streaming

API Endpoints

Research Endpoints

  • POST/v1/academic/search
  • POST/v1/stocks/analyze
  • POST/v1/jobs/search
  • POST/v1/learning/path

Data Endpoints

  • GET/v1/papers/{id}
  • GET/v1/companies/{symbol}
  • GET/v1/reports/{id}
  • PUT/v1/users/preferences

Code Examples

Python
import geltai

client = geltai.Client(api_key="your_api_key")

# Academic research
papers = client.academic.search(
    query="quantum computing applications",
    filters={"year": {"gte": 2020}},
    limit=20
)

for paper in papers:
    print(f"{paper.title} ({paper.year})")
    print(f"Citations: {paper.citation_count}")
    print("---")
JavaScript
const GeltAI = require('geltai');

const client = new GeltAI({
  apiKey: 'your_api_key'
});

// Stock analysis
async function analyzeStock() {
  const analysis = await client.stocks.analyze({
    symbol: 'AAPL',
    metrics: ['fundamentals', 'sentiment', 'technicals']
  });
  
  console.log(analysis.recommendation);
  console.log(analysis.priceTarget);
}
cURL
curl -X POST https://api.geltai.com/v1/academic/search \
  -H "Authorization: Bearer your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "machine learning healthcare",
    "limit": 10,
    "filters": {
      "year": {"gte": 2022}
    }
  }'

Rate Limits & Pricing

Free Tier

1,000

API calls/month

  • • 10 requests/minute
  • • Basic support
  • • Community access
Popular

Pro

100,000

API calls/month

  • • 100 requests/minute
  • • Priority support
  • • Advanced features

Enterprise

Custom

Unlimited API calls

  • • Custom rate limits
  • • Dedicated support
  • • SLA guarantee

Ready to get started?

Create your free account and start building with Gelt AI API today.

Get Your API Key