Real-time alternative data APIs for AI and GPU markets. Perfect for developers, quant traders, and researchers.
- Visit RapidAPI
- Subscribe to a plan (Free tier available: 10 requests/day)
- Get your API key from the dashboard
import requests
url = "https://autonomous-alt-data-api-factory.p.rapidapi.com/v1/cloud-gpu/prices"
headers = {
"X-RapidAPI-Key": "your-api-key-here",
"X-RapidAPI-Host": "autonomous-alt-data-api-factory.p.rapidapi.com"
}
params = {"provider": "AWS", "limit": 10}
response = requests.get(url, headers=headers, params=params)
data = response.json()
if data["success"]:
for item in data["data"]:
print(f"{item['provider']} - {item['gpu_type']}: ${item['price_per_hour']}/hour")const url = 'https://autonomous-alt-data-api-factory.p.rapidapi.com/v1/cloud-gpu/prices';
const options = {
method: 'GET',
headers: {
'X-RapidAPI-Key': 'your-api-key-here',
'X-RapidAPI-Host': 'autonomous-alt-data-api-factory.p.rapidapi.com'
},
params: { provider: 'AWS', limit: 10 }
};
fetch(url + '?' + new URLSearchParams(options.params), { headers: options.headers })
.then(response => response.json())
.then(data => {
if (data.success) {
data.data.forEach(item => {
console.log(`${item.provider} - ${item.gpu_type}: $${item.price_per_hour}/hour`);
});
}
});Get real-time cloud GPU pricing from AWS, Google Cloud, Azure, and Oracle Cloud.
Endpoint: GET /v1/cloud-gpu/prices
Parameters:
provider(optional): Filter by provider (AWS, Google Cloud, Azure, Oracle Cloud)region(optional): Filter by regiongpu_type(optional): Filter by GPU type (V100, A100, H100, T4, P100)limit(optional): Max results (default: 100, max: 1000)
Get GPU supply and availability information, including lead times and pricing.
Endpoint: GET /v1/gpu-supply
Parameters:
gpu_model(optional): Filter by GPU modelavailability(optional): Filter by availability (in_stock, limited, out_of_stock, pre_order)supplier(optional): Filter by supplierlimit(optional): Max results (default: 100, max: 1000)
Get AI and machine learning job postings with salary data.
Endpoint: GET /v1/ai-jobs
Parameters:
company(optional): Filter by company namelocation(optional): Filter by locationjob_type(optional): Filter by job type (full_time, part_time, contract)experience_level(optional): Filter by experience level (entry, mid, senior, executive)salary_min(optional): Minimum salary filter (in USD)limit(optional): Max results (default: 100, max: 1000)
- BASIC (Free): 10 requests/day - Perfect for testing
- PRO: $9.99/month - 1,000 requests/month
- ULTRA: $29.99/month - 10,000 requests/month
- MEGA: $99.99/month - Unlimited requests
This repository contains practical examples for different use cases:
basic_usage.py- Basic API callscloud_gpu_comparison.py- Compare GPU prices across providersgpu_supply_monitor.py- Monitor GPU availabilityai_jobs_analyzer.py- Analyze AI job market trendsprice_dashboard.py- Simple price monitoring dashboard
basic_usage.js- Basic API calls with Node.jscloud_gpu_comparison.js- Compare GPU pricesweb_dashboard.html- Interactive web dashboard
- Cost Optimization: Find the cheapest cloud GPU instances
- Supply Monitoring: Track GPU availability and lead times
- Market Analysis: Analyze AI job market trends and salaries
- Quant Trading: Use alternative data for trading strategies
pip install -r python/requirements.txtnpm installfrom examples import find_cheapest_gpu
# Find cheapest A100 instances
cheapest = find_cheapest_gpu("A100", limit=50)
print(f"Cheapest A100: {cheapest['provider']} - ${cheapest['price_per_hour']}/hour")from examples import monitor_gpu_supply
# Check availability of NVIDIA A100
supply = monitor_gpu_supply("NVIDIA A100 80GB")
print(f"Availability: {supply['availability']}")
print(f"Lead time: {supply['lead_time_days']} days")from examples import analyze_ai_jobs
# Get senior AI jobs in San Francisco
jobs = analyze_ai_jobs(location="San Francisco, CA", experience_level="senior")
print(f"Found {len(jobs)} senior AI jobs")- API Documentation: RapidAPI Hub
- API Status: Check the
/healthendpoint - Support: Open an issue on GitHub
MIT License - feel free to use these examples in your projects!
Contributions are welcome! Please feel free to submit a Pull Request.
If you find these examples helpful, please consider giving this repository a star!
Made with β€οΈ for developers building with alternative data APIs