# ArbiPulse Flip-Check — Resale Arbitrage Verdict

> ArbiPulse Flip-Check — Resale Arbitrage Verdict is a paid API for AI agents from arbipulse.theaslangroupllc.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Analyzes a physical item (e.g. sealed collectible, toy, electronics) and returns a buy/sell arbitrage verdict with estimated profit and ROI at median comparable sale price

## Facts

- Endpoint: GET https://arbipulse.theaslangroupllc.com/api/flip-check
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arbipulse-flip-check-resale-arbitrage-verdict-0bb2dd04
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BEAv_Sim7pdal_rOriEwJ

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-flip-check-resale-arbitrage-verdict-0bb2dd04
```

Example prompt: Check if a sealed Lego 75192 Millennium Falcon I can buy for $550 is worth flipping — give me the verdict, expected sale price, profit, and ROI.

## When to prefer this

Use this endpoint when you need a fast, quantified verdict on whether a specific physical item is worth buying for resale, with profit and ROI estimates against median comparable sales — ideal for retail arbitrage bots, deal-scanning agents, or reseller assistants evaluating collectibles, toys, sneakers, or electronics. Prefer this over manual comp lookups or generalist price APIs when you want a structured THIN/GOOD verdict with P&L math already computed.

## Known failure modes

- Unknown or ambiguous item name returns low-confidence or empty comp data
- Very niche items with no comparable sales data may return null projections
- Incorrect buy price input yields misleading ROI figures
- Rate limiting or payment failure returns 402 error requiring USDC payment
- Item with no liquid resale market may return THIN verdict with zero comps

## How this service works

Retail resale arbitrage check — "if I buy this at this price, what do I clear reselling it?" Live eBay ask comps (each linked to its listing; web-grounded fallback), fee math for eBay/Amazon/StockX/Poshmark/Mercari, profit + ROI at low/median/high comps, best-venue table, FLIP / THIN / PASS verdict. Returns INSUFFICIENT_EVIDENCE rather than an invented price.

## Output

Returns a JSON object with the item name, a verdict label (e.g. THIN, GOOD), the buy price input, and at-median-comp projections including expected profit in dollars and ROI percentage, based on comparable market sales data.

## 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": {
      "item": {
       "type": "string",
       "description": "Product, specific (brand + model number). Required."
      },
      "buy_price": {
       "type": "string",
       "description": "Acquisition cost in USD. Required."
      },
      "ship_cost": {
       "type": "string",
       "description": "Outbound shipping USD (default 8)"
      },
      "marketplace": {
       "type": "string",
       "description": "ebay (default) | amazon | stockx | poshmark | mercari"
      }
     }
    }
   },
   "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": {
  "item": "Lego 75192 sealed",
  "verdict": "THIN",
  "buy_price": 550,
  "at_median_comp": {
   "profit": 66.5,
   "roi_pct": 12.1,
   "sale_price": 720
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arbipulse-flip-check-resale-arbitrage-verdict-0bb2dd04/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)
