# SignalPulse Equity Tokenization Radar

> SignalPulse Equity Tokenization Radar is a paid API for AI agents from signalpulse.theaslangroupllc.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns the tokenization status, on-chain dividend handling, and forward tokenization catalysts for any US equity ticker symbol

## Facts

- Endpoint: GET https://signalpulse.theaslangroupllc.com/api/signal/tokenization-radar
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalpulse-equity-tokenization-radar-d4dbf50d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ryFzgNMQOxchj1y_dpxyA

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 signalpulse-equity-tokenization-radar-d4dbf50d
```

Example prompt: What's the current tokenization status for NVDA — is it live on-chain, pending, or not tokenized yet, and are there any upcoming catalysts or DTCC pilot activity I should know about?

## When to prefer this

Use this endpoint when an AI agent needs a fast, cheap read on whether a specific US equity has been tokenized on-chain, is in a pending pipeline, or has upcoming RWA/tokenization catalysts — ideal as a top-of-funnel filter before deeper analysis, for financial advisors tracking the tokenized equity space, or for agents monitoring DTCC and RWA issuance activity without needing full portfolio analytics.

## Known failure modes

- Unknown or invalid ticker symbol returns no result or error
- Non-US equities may not be covered, returning none status
- Data may lag real-time blockchain events by some interval
- $0.25 USDC payment failure returns 402 Payment Required
- Network timeout or service unavailability returns 5xx error

## How this service works

Equity tokenization radar for AI financial & advisor agents — what is going on-chain and when: tokenization status for any US ticker (live / pending / none), on-chain dividend handling, and forward tokenization catalysts (new tokenized-stock listings, RWA issuance, DTCC pilots). The cheap top-of-funnel read for agents tracking tokenized equities.

## Output

Returns whether the queried US ticker is live as a tokenized equity, pending tokenization, or has no on-chain presence; includes how dividends are handled on-chain if applicable; and lists any forward-looking tokenization catalysts such as new RWA issuance events, DTCC pilot involvement, or upcoming tokenized-stock listings.

## 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": {
      "ticker": {
       "type": "string",
       "description": "optional US equity ticker for status + dividend; omit for the forward radar"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalpulse-equity-tokenization-radar-d4dbf50d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signalpulse.theaslangroupllc.com](https://www.zero.xyz/host/signalpulse.theaslangroupllc.com/llms.txt)
