# claw402 Twelve Data EOD via x402 Payment Gateway

> claw402 Twelve Data EOD via x402 Payment Gateway is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Fetches end-of-day (EOD) price data for a given stock symbol from Twelve Data, paid per-call with USDC via x402 protocol — no API key required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/twelvedata/eod
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-twelve-data-eod-via-x402-payment-gateway-c84ae48d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V90vtxvN-BWpYJVFtc3-d

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 claw402-twelve-data-eod-via-x402-payment-gateway-c84ae48d
```

Example prompt: Can you grab the end-of-day price data for AAPL from Twelve Data? Just pay the $0.002 USDC fee per call — no API key needed.

## When to prefer this

Choose this endpoint when you need Twelve Data EOD stock price data without registering for an API key, and you are operating in a crypto-native or x402-enabled environment that can pay $0.002 USDC per call via a wallet. Ideal for AI agents that need lightweight, per-call financial data access without subscription overhead.

## Known failure modes

- Missing or invalid symbol parameter returns empty data array with non-zero code
- Insufficient USDC balance or failed x402 payment results in 402 Payment Required response
- Unsupported ticker symbol returns empty data array
- Network or upstream Twelve Data API outage may return error code
- Malformed query parameters rejected with HTTP 400

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

Returns a JSON object with a status code and an array of end-of-day market data (likely OHLCV: open, high, low, close, volume) for the requested stock symbol, as provided by Twelve Data.

## 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",
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw402-twelve-data-eod-via-x402-payment-gateway-c84ae48d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
