# Interzoid Municipal Issuer Profile API

> Interzoid Municipal Issuer Profile API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Retrieves AI-enriched credit, debt, and financial profile data for a named municipal bond issuer (state, city, county, district, authority, university, etc.)

## Facts

- Endpoint: GET https://api.interzoid.com/getmuniissuerprofile
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-municipal-issuer-profile-api-b5b4368f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WB4VNC1wosXH0s01DULP0

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 interzoid-municipal-issuer-profile-api-b5b4368f
```

Example prompt: Can you pull up the municipal issuer profile for the State of California — I need the credit ratings, outstanding debt overview, and what types of securities they typically issue?

## When to prefer this

Use this endpoint when you need structured financial and credit profile data for a named municipal bond issuer — especially when you need credit ratings, debt overviews, security types, and EMMA links in a single enriched response. Prefer this over raw MSRB/EMMA scraping when you want normalized, AI-enriched data ready for downstream analytics or CRM enrichment.

## Known failure modes

- Unknown or misspelled issuer name returns no match or error
- Very small or obscure local issuers may have limited data
- Ambiguous names (e.g. 'Springfield') may return incorrect or partial matches
- Network timeout or service unavailability returns HTTP error
- Credits exhausted returns payment/quota error

## How this service works

Retrieve a research profile on any US municipal securities issuer (state, city, county, school district, transit/water/sewer authority, hospital district, public university, etc.) including issuer type, credit standing, typical security types, outstanding debt, notable events, pension/OPEB exposure, revenue sources, and EMMA reference link.

## Output

Returns a JSON object containing the issuer's canonical name, issuer type (state/city/county/etc.), state, approximate population, credit ratings from Moody's/S&P/Fitch, a summary of outstanding debt, typical security types issued, and a direct link to their MSRB EMMA page for further research.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "State of California"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Municipal issuer name (state, city, county, district, authority, university, etc.)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "State": "California",
  "Credits": "0",
  "IssuerName": "State of California",
  "IssuerType": "State",
  "Population": "Approximately 39.1 million residents (2024)",
  "EMMAReferenceURL": "https://emma.msrb.org/IssuerHomePage/Issuer?id=CASTATE",
  "TypicalSecurityTypes": "General Obligation (GO) bonds; Lease Revenue Bonds via SPWB; revenue bond programs for water, housing, transportation",
  "GeneralCreditStanding": "Moody's Aa2, S&P AA-, Fitch AA",
  "OutstandingDebtOverview": "Approximately $75 billion in general obligation debt outstanding"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-municipal-issuer-profile-api-b5b4368f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
