# Prysm — TwelveData Financial Market Data Provider

> Prysm — TwelveData Financial Market Data Provider is a paid API for AI agents from prysm-kappa.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Fetches real-time and historical financial market data (quotes, prices, indicators) via the TwelveData provider through Prysm's x402 payment gateway on Base mainnet.

## Facts

- Endpoint: POST https://prysm-kappa.vercel.app/api/v1/providers/twelvedata
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prysm-twelvedata-financial-market-data-provider-8b7e8476
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ctRj4imiAb45gz6yQf796

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 prysm-twelvedata-financial-market-data-provider-8b7e8476 -d '<json body>'
```

Example prompt: Pull the latest stock quote for AAPL using the TwelveData quote operation through Prysm — I need the current price, open, high, low, and volume.

## When to prefer this

Choose this endpoint when you need financial market data (quotes, OHLCV, technical indicators) from TwelveData and want to pay per-call in USDC via x402 on Base mainnet without managing a TwelveData API key directly. Ideal for AI agents in crypto-native or Web3 environments already using x402 micropayments.

## Known failure modes

- Invalid or unsupported operation name returns an error — only allowlisted TwelveData operations are permitted
- Malformed or missing ticker symbol causes TwelveData to return an error propagated in the response
- Insufficient USDC balance or failed x402 payment results in 402 Payment Required and no data returned
- Rate limiting or upstream TwelveData API unavailability causes a timeout or 5xx error
- Requesting a symbol not covered by TwelveData (e.g. obscure OTC stocks) returns empty or error data

## How this service works

Prysm sells paid, agent-ready provider capabilities over x402 on Base mainnet using USDC.

## Output

Returns a JSON object with a `data` field containing the TwelveData API response (e.g. quote, OHLCV, indicator values), a `provider` field confirming 'twelvedata', and an `operation` field echoing the requested operation (e.g. 'quote').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "description": "Provider-specific operation parameters.",
   "additionalProperties": true
  },
  "operation": {
   "type": "string",
   "description": "Allowlisted operation for the selected provider."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "provider": "twelvedata",
  "operation": "quote"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prysm-twelvedata-financial-market-data-provider-8b7e8476/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from prysm-kappa.vercel.app](https://www.zero.xyz/host/prysm-kappa.vercel.app/llms.txt)
