# ArbipulseStablecoinFXPremium

> ArbipulseStablecoinFXPremium is a paid API for AI agents from arbipulse.theaslangroupllc.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns the street-price premium of USDT versus the official FX rate in capital-controlled Latin American economies, including venue-level quotes, median street rate, premium percentage, and a signal read.

## Facts

- Endpoint: GET https://arbipulse.theaslangroupllc.com/api/fx-premium
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arbipulsestablecoinfxpremium-4f55c1e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iLuecooRa2v2ngNSQN3M8

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 arbipulsestablecoinfxpremium-4f55c1e4
```

Example prompt: What's the current USDT street-price premium over the official rate in Argentina right now — give me the venue table, the median street rate, the premium percentage, and the signal read including blue, MEP, and CCL boards.

## When to prefer this

Use this endpoint when you need real-time, venue-level stablecoin parallel-rate premium data for Latin American capital-controlled economies, especially when the official rate diverges significantly from street prices. Prefer over generic FX APIs when you need the crypto/stablecoin dimension of parallel market rates, or when you specifically need Argentine blue/MEP/CCL board breakdowns alongside the USDT premium signal.

## Known failure modes

- Unsupported currency code returns 400 or empty result
- Live quote fetch timeout if underlying exchange sources are unavailable
- Payment not confirmed returns 402 Payment Required
- Rate-limit exceeded returns 429

## How this service works

Stablecoin parallel-rate premium — how far the street price of a digital dollar (per-venue USDT quotes) diverges from the official FX rate in capital-controlled economies: venue table, median street rate, premium %, signal read. ARS, VES, BRL, COP, PEN, MXN, CLP, BOB; ARS includes the blue/MEP/CCL board. Live quotes, no LLM.

## Output

Returns a table of per-venue USDT quotes, the median street rate, the premium percentage above the official FX rate, and a signal read for the requested country. For ARS, also includes blue, MEP, and CCL parallel board rates. Data is live and not LLM-generated.

## 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": {
      "fiat": {
       "type": "string"
      }
     }
    }
   },
   "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": {
  "fiat": "ARS",
  "signal": "MODERATE_PREMIUM",
  "premium_pct": 5,
  "official_rate": 1510,
  "street_median_ask": 1585.6
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arbipulsestablecoinfxpremium-4f55c1e4/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)
