# Prysm Alpha Vantage Provider

> Prysm Alpha Vantage 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-14).

Proxies Alpha Vantage financial market data operations (e.g. stock quotes, time series, indicators) via x402 micropayment on Base mainnet

## Facts

- Endpoint: POST https://prysm-kappa.vercel.app/api/v1/providers/alphavantage
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prysm-alpha-vantage-provider-0963595c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HXuhgc3FUNY4WKYs852WG

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-alpha-vantage-provider-0963595c -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need Alpha Vantage financial market data (quotes, time series, technical indicators) and want to pay per-call via x402 USDC micropayment on Base mainnet without managing an Alpha Vantage API key directly. Prefer it for agent workflows that require on-demand, pay-as-you-go financial data access within a crypto-native payment stack.

## Known failure modes

- Unsupported operation name returns an error indicating the operation is not allowlisted
- Missing or malformed `input` parameters cause downstream Alpha Vantage errors surfaced in the response
- Payment failure over x402 results in a 402 response before the operation is attempted
- Rate limits or API quota exhaustion on the Alpha Vantage backend may return empty or error data
- Invalid ticker symbol returns empty or error data from Alpha Vantage

## How this service works

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

## Output

A JSON object with a `data` field containing the raw Alpha Vantage API response for the requested operation (e.g. quote fields, time series entries, indicator values), plus `provider` ('alphavantage') and `operation` name echoed back.

## 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": "alphavantage",
  "operation": "quote"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prysm-alpha-vantage-provider-0963595c/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)
