Pricing API

Get Real-Time Pricing

# All GPUs
curl https://api.pulserun.dev/v1/pricing \
  -H "Authorization: Bearer pr_live_xxxxxxxxxxxxx"
 
# Specific GPU
curl "https://api.pulserun.dev/v1/pricing?gpu=a100_80gb" \
  -H "Authorization: Bearer pr_live_xxxxxxxxxxxxx"
 
# With filters
curl "https://api.pulserun.dev/v1/pricing?gpu=a100_80gb&region=us&spot=true" \
  -H "Authorization: Bearer pr_live_xxxxxxxxxxxxx"

Response

{
  "data": [
    {
      "gpu": "a100_80gb",
      "gpu_name": "NVIDIA A100 80GB",
      "providers": [
        {
          "provider": "vast_ai",
          "price_per_hour": 0.95,
          "availability": 23,
          "region": "us-east",
          "spot": false,
          "is_cheapest": true
        },
        {
          "provider": "runpod",
          "price_per_hour": 1.44,
          "availability": 15,
          "region": "us-west",
          "spot": false,
          "is_cheapest": false
        }
      ],
      "cheapest": {
        "provider": "vast_ai",
        "price_per_hour": 0.95
      }
    }
  ],
  "updated_at": "2026-03-01T12:00:30Z"
}

Price Comparison

Side-by-side comparison for a specific GPU:

curl "https://api.pulserun.dev/v1/pricing/compare?gpu=a100_80gb" \
  -H "Authorization: Bearer pr_live_xxxxxxxxxxxxx"

Price History

curl "https://api.pulserun.dev/v1/pricing/history?gpu=a100_80gb&period=24h" \
  -H "Authorization: Bearer pr_live_xxxxxxxxxxxxx"

Periods: 24h, 7d, 30d