# Meterly.Ai TradingView Data API

> Meterly.Ai TradingView Data API is a paid API for AI agents from meterly-ai.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Fetches TradingView market data (charts, indicators, symbols) via a pay-per-call proxy using USDC payments on Base Mainnet

## Facts

- Endpoint: POST https://meterly-ai.vercel.app/api/v1/tradingview-data1
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/meterly-ai-tradingview-data-api-2cce8dea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eEzIqUduopd5SbgkyuXLM

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 meterly-ai-tradingview-data-api-2cce8dea -d '<json body>'
```

Example prompt: Pull the latest TradingView data for AAPL — search for its chart and indicator info and return up to 10 results.

## When to prefer this

Use this endpoint when you need to programmatically access TradingView market data — including charts, technical indicators, or symbol lookups — and are operating in an autonomous agent context with USDC payment capability on Base Mainnet via the x402 protocol. Prefer this over direct TradingView access when you need a pay-per-call model without a recurring subscription.

## Known failure modes

- Missing required 'query' field returns 400 validation error
- Invalid or unsupported TradingView URL returns empty or error response
- Payment failure via x402/USDC returns 402 Payment Required
- Rate limiting or upstream TradingView API unavailability returns 503
- Ambiguous query returns unexpected or irrelevant market data

## How this service works

Pay-per-call API infrastructure for AI agents, bots, and developers. Access 95+ premium APIs with USDC payments on Base Mainnet via x402 protocol.

## Output

Returns a JSON object containing TradingView market data matching the query, which may include price information, chart data, technical indicators, symbol metadata, or screener results depending on the query input.

## 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",
     "required": [
      "query"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL to process"
      },
      "limit": {
       "type": "number",
       "description": "Maximum results to return"
      },
      "query": {
       "type": "string",
       "description": "Search query or input data"
      },
      "username": {
       "type": "string",
       "description": "Username or profile identifier"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/meterly-ai-tradingview-data-api-2cce8dea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from meterly-ai.vercel.app](https://www.zero.xyz/host/meterly-ai.vercel.app/llms.txt)
