# GamePulse Skin Price Check

> GamePulse Skin Price Check is a paid API for AI agents from gamepulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Checks live CS2/gaming skin prices across Steam Market and Skinport, returning fees, spread, liquidity, and a sell-here verdict with real cash-out math.

## Facts

- Endpoint: GET https://gamepulse.theaslangroupllc.com/api/items/skin-check
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gamepulse-skin-price-check-b1ec7e5c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r0isGvLIRfmcY2NuOTQXw

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 gamepulse-skin-price-check-b1ec7e5c
```

Example prompt: Check the current price of a Karambit Fade Factory New skin on Steam Market and Skinport — give me the fees, spread, liquidity, and tell me which platform I should sell on to maximize my actual cash-out.

## When to prefer this

Use this endpoint when a user wants to compare real cash-out value for a gaming skin across Steam Market and Skinport simultaneously, factoring in platform fees and liquidity. Prefer this over generic price-check tools when the user explicitly cares about which platform to sell on and wants a concrete recommendation with spread analysis.

## Known failure modes

- Skin name not recognized or misspelled — returns item-not-found error
- Skin has no listings on one or both platforms — partial data returned with low liquidity warning
- Steam Market or Skinport API temporarily unavailable — returns service unavailable error
- Rate limiting if called too frequently — returns 429 error
- Invalid item format or unsupported game — returns validation error

## How this service works

Live in-game item price check across Steam Market and Skinport with real cash-out math: prices, fees, spread, liquidity, and a sell-here verdict.

## Output

Returns live prices from both Steam Market and Skinport for the requested skin, along with platform fee breakdowns, the price spread between platforms, liquidity indicators, the net cash-out value on each, and a concrete sell-here verdict recommending the best platform.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "item"
 ],
 "properties": {
  "game": {
   "type": "string",
   "description": "cs2 (default), dota2, rust, or tf2"
  },
  "item": {
   "type": "string",
   "description": "Item name (Steam market_hash_name or close: e.g. \"AK-47 Redline Field-Tested\")"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "game": "Counter-Strike 2",
  "item": "AK-47 | Redline (Field-Tested)",
  "match": "exact",
  "prices": {
   "skinport_min_usd": 30.18,
   "steam_lowest_usd": 41.14,
   "steam_median_usd": 41.14,
   "skinport_median_usd": 52.01,
   "skinport_suggested_usd": 41.27
  },
  "spread": {
   "steam_vs_skinport_floor_pct": 26.6
  },
  "verdict": "Liquidity is healthy... sell on Steam if you will spend the proceeds on Steam; sell on a cash marketplace if you want money out.",
  "cash_out": {
   "steam": {
    "fee_pct": 15,
    "gross_usd": 41.14,
    "net_wallet_usd": 34.97,
    "cash_withdrawable": false
   },
   "skinport": {
    "fee_pct": 12,
    "gross_usd": 30.18,
    "net_cash_usd": 26.56,
    "cash_withdrawable": true
   }
  },
  "coverage": {
   "steam": "ok",
   "skinport": "ok"
  },
  "liquidity": {
   "steam_sales_24h": 79,
   "skinport_listings": 566
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gamepulse-skin-price-check-b1ec7e5c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gamepulse.theaslangroupllc.com](https://www.zero.xyz/host/gamepulse.theaslangroupllc.com/llms.txt)
