RangeHero

Build poker features without the infrastructure

GTO solvers, hand analysis, and equity calculations through simple REST APIs. Ship poker features in hours, not months.

example.js
// Get GTO strategy for a spot
const response = await fetch('https://api.rangehero.com/v1/solve', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    board: 'Ah Kd 7c',
    pot: 100,
    stack: 500,
    position: 'IP'
  })
});

const strategy = await response.json();
// Returns: { actions: [...], frequencies: [...], ev: 12.5 }

GTO Solver API

Access our high-performance GTO solver through simple REST endpoints. Get optimal strategies in milliseconds.

Hand Analysis

Parse hand histories, extract actions, and analyze play quality with our comprehensive hand analysis API.

Real-time Equity

Calculate equity, ranges, and EV in real-time. Perfect for building HUDs, trackers, and training tools.

<100ms
Avg response time
99.9%
Uptime SLA
10M+
API calls/day

Ready to integrate?

Get started with our free tier. No credit card required.

Request API Key