# ArbiPulse GPU Compute Price Arbitrage

> ArbiPulse GPU Compute Price Arbitrage is a paid API for AI agents from arbipulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Returns live $/GPU-hour pricing for a specified GPU class across vast.ai, RunPod, and AWS on-demand, plus spread multiples and monthly savings estimates

## Facts

- Endpoint: GET https://arbipulse.theaslangroupllc.com/api/compute-arb
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arbipulse-gpu-compute-price-arbitrage-5f508963
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mzECwdME8sPDY72Fww8io

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability arbipulse-gpu-compute-price-arbitrage-5f508963
```

Example prompt: What's the current $/GPU-hour spread for H100s across vast.ai and RunPod versus AWS on-demand, and how much would I save running one GPU around the clock for a month on the cheapest marketplace option?

## When to prefer this

Use this endpoint when an AI agent needs to make cost-optimal decisions about GPU provisioning for training or inference workloads — specifically when comparing marketplace clouds (vast.ai, RunPod) against AWS on-demand for a known GPU class. Prefer this over generic cloud pricing APIs when you need a pre-computed spread multiple and savings estimate rather than raw price lists.

## Known failure modes

- Upstream provider API unavailable — stale or missing price for one or more providers
- Invalid GPU class specified — returns error if GPU model not in supported enum
- Network timeout to live provider APIs — partial results or error response
- GPU class temporarily unavailable on a given marketplace — missing slot in response

## How this service works

GPU compute price arbitrage — ONE $0.25 call returns live $/GPU-hour for one GPU class (H100, H200, B200, A100, L40S, RTX 4090/5090) across the vast.ai marketplace floor, RunPod community/secure cloud, and the AWS on-demand anchor, plus the spread multiple and 24/7 monthly savings versus the anchor. Marketplace-vs-hyperscaler spreads of 3-4x are routine in 2026 — for agents provisioning training or inference this is direct spend recovery. Live provider APIs, no LLM in the path.

## Output

Returns live $/GPU-hour pricing for the requested GPU class from vast.ai marketplace floor, RunPod community and secure cloud, and AWS on-demand anchor; includes the spread multiple (e.g. 3.2x cheaper than AWS) and estimated 24/7 monthly dollar savings versus the hyperscaler anchor price

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "gpu": {
       "type": "string",
       "description": "GPU class: H100 (default) | H200 | B200 | A100 | L40S | RTX4090 | RTX5090"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "gpu": "H100",
  "quotes": [
   {
    "tier": "marketplace floor",
    "provider": "vast.ai",
    "usd_per_gpu_hr": 1.21
   },
   {
    "tier": "on-demand (us-east-1)",
    "provider": "AWS",
    "usd_per_gpu_hr": 11.02
   }
  ],
  "cheapest": {
   "provider": "vast.ai",
   "usd_per_gpu_hr": 1.21
  },
  "spread_multiple": 9.1,
  "savings_per_gpu_month_24x7": 7063
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arbipulse-gpu-compute-price-arbitrage-5f508963/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from arbipulse.theaslangroupllc.com](https://www.zero.xyz/host/arbipulse.theaslangroupllc.com/llms.txt)
