# EconSignalPulse Credit Stress API

> EconSignalPulse Credit Stress API is a paid API for AI agents from econsignalpulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-16).

Returns sovereign credit and banking-system stress indicators including World Bank debt data, IMF projections, CDS spreads, credit ratings, and IMF-program status for emerging and frontier markets.

## Facts

- Endpoint: GET https://econsignalpulse.theaslangroupllc.com/api/econsignal/credit-stress
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/econsignalpulse-credit-stress-api-ddfaa976
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lrrL5PhtmFi-WcPEUy1Hh

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 econsignalpulse-credit-stress-api-ddfaa976
```

Example prompt: Pull the sovereign credit stress report for Turkey — I need the CDS spreads, current IMF program status, World Bank debt ratios, and credit ratings so I can evaluate it for our EM bond portfolio.

## When to prefer this

Use this endpoint when you need a consolidated sovereign credit stress view combining official multilateral data (World Bank, IMF) with market signals (CDS spreads, ratings) and program-enrollment status. Ideal for EM bond analysis, credit default swap pricing, political risk insurance underwriting, or treasury exposure assessment where a single multi-source sovereign stress score is more efficient than querying each data source separately.

## Known failure modes

- Country code not recognized or unsupported — returns 404 or empty result
- CDS spread data unavailable for frontier markets with low liquidity — partial response
- IMF program status stale if not recently updated — may reflect outdated enrollment
- Upstream World Bank or IMF data feed delay causing stale projections
- Payment not processed correctly via x402 — returns 402 Payment Required
- Rate limit exceeded — returns 429 Too Many Requests

## How this service works

Sovereign credit and banking-system stress — World Bank debt data, IMF projections, CDS spreads, ratings and IMF-program status. For EM-bond, credit-insurance and treasury agents.

## Output

A structured data response containing sovereign credit and banking-system stress indicators for the requested country: World Bank external and domestic debt metrics, IMF forward projections, 5-year CDS spread levels, credit agency ratings (S&P, Moody's, Fitch), and whether the country is currently enrolled in an IMF program, along with a composite stress signal.

## 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": {
      "iso2": {
       "type": "string",
       "description": "ISO2 code for World Bank"
      },
      "iso3": {
       "type": "string",
       "description": "ISO3 code for IMF"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar | hi (default: en)"
      },
      "country": {
       "type": "string",
       "description": "Country — e.g. \"Egypt\" | \"Pakistan\" | \"Sri Lanka\" | \"Ghana\" | \"Ecuador\""
      }
     }
    }
   },
   "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": {
  "stress_score": {
   "max": 100,
   "note": "Manageable near-term with IMF/GCC support; medium-term solvency requires structural reform",
   "score": 62,
   "rating": "High Stress"
  },
  "query_summary": {
   "iso2": "EG",
   "iso3": "EGY",
   "country": "Egypt"
  },
  "credit_ratings": {
   "sp": "B-",
   "fitch": "B-",
   "moodys": "Caa1",
   "outlook": "Stable (post-devaluation adjustment)"
  },
  "reform_progress": "EGP float and subsidy cuts proceeding on schedule; FDI uptick in Q1 2025; tourism revenues recovering",
  "sovereign_profile": {
   "gov_debt_pct_gdp": 95.8,
   "fx_reserves_usd_bn": 46,
   "imf_program_active": true,
   "imf_program_detail": "EFF $8B (2024-2026) — conditional on EGP float, subsidy reform",
   "external_debt_usd_bn": 165,
   "debt_service_ratio_pct_exports": 34
  },
  "stress_indicators": {
   "fx_regime": "Managed float post-March 2024 — EGP devalued 40%",
   "cds_5yr_bps": 620,
   "banking_sector_npl_pct": 3.8,
   "eurobond_yield_spread_bps": 680,
   "dollarization_deposits_pct": 22
  },
  "vulnerability_assessment": {
   "rollover_risk": "Elevated — $18B external debt maturities in 2025-2026",
   "solvency_risk": "High — debt/GDP ratio requires sustained primary surplus to stabilize",
   "contagion_risk": "Low — Egypt too systemically important for GCC to allow default",
   "liquidity_risk": "Moderate — IMF program + Gulf GCC deposits provide near-term buffer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/econsignalpulse-credit-stress-api-ddfaa976/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from econsignalpulse.theaslangroupllc.com](https://www.zero.xyz/host/econsignalpulse.theaslangroupllc.com/llms.txt)
