Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Use Twelve Data REST/WebSocket APIs for market quotes, latest prices, historical time series, symbol discovery, and technical indicators. Trigger when users...
Use Twelve Data REST/WebSocket APIs for market quotes, latest prices, historical time series, symbol discovery, and technical indicators. Trigger when users...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
This skill provides practical request patterns for Twelve Data based on official docs. Official docs: https://twelvedata.com/docs https://support.twelvedata.com/en/articles/5620512-how-to-create-a-request https://support.twelvedata.com/en/articles/5335783-trial
REST API: https://api.twelvedata.com WebSocket: wss://ws.twelvedata.com
Twelve Data supports two auth methods: Query parameter curl "https://api.twelvedata.com/price?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}" HTTP header (recommended by docs) curl -H "Authorization: apikey ${TWELVEDATA_API_KEY}" \ "https://api.twelvedata.com/price?symbol=AAPL" Notes: apikey=demo can be used for limited trial/demo requests. Premium endpoints require higher-tier plans.
Configure in OpenClaw: { skills: { entries: { "twelve-data": { enabled: true, apiKey: "your-twelvedata-api-key", env: { TWELVEDATA_API_KEY: "your-twelvedata-api-key" } } } } } Or in ~/.openclaw/.env: TWELVEDATA_API_KEY=your-api-key-here
curl "https://api.twelvedata.com/price?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}"
curl "https://api.twelvedata.com/quote?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}"
curl "https://api.twelvedata.com/time_series?symbol=AAPL&interval=1day&outputsize=100&apikey=${TWELVEDATA_API_KEY}" Common interval values: 1min, 5min, 15min, 30min, 1h, 2h, 4h, 1day, 1week, 1month Useful params: outputsize=1..5000 start_date=YYYY-MM-DD or datetime end_date=YYYY-MM-DD or datetime timezone=Exchange|UTC|IANA_TZ format=JSON|CSV
curl "https://api.twelvedata.com/symbol_search?symbol=apple&apikey=${TWELVEDATA_API_KEY}"
RSI: curl "https://api.twelvedata.com/rsi?symbol=AAPL&interval=1day&time_period=14&series_type=close&apikey=${TWELVEDATA_API_KEY}" MACD: curl "https://api.twelvedata.com/macd?symbol=AAPL&interval=1day&series_type=close&apikey=${TWELVEDATA_API_KEY}"
Earnings (/earnings, Grow+): curl "https://api.twelvedata.com/earnings?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}" Statistics (/statistics, Pro+): curl "https://api.twelvedata.com/statistics?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}" Income statement (/income_statement, Pro+): curl "https://api.twelvedata.com/income_statement?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}" Balance sheet (/balance_sheet, Pro+): curl "https://api.twelvedata.com/balance_sheet?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}" Cash flow (/cash_flow, Pro+): curl "https://api.twelvedata.com/cash_flow?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}" Dividends: curl "https://api.twelvedata.com/dividends?symbol=AAPL&start_date=1970-01-01&apikey=${TWELVEDATA_API_KEY}"
Batch symbols on supported endpoints: curl "https://api.twelvedata.com/time_series?symbol=AAPL,EUR/USD,ETH/BTC:Huobi&interval=1min&apikey=${TWELVEDATA_API_KEY}" Asset symbol patterns: Stocks: AAPL Forex: EUR/USD Crypto: BTC/USD or exchange-scoped pair like ETH/BTC:Huobi
Connect: wss://ws.twelvedata.com/v1/quotes/price?apikey=YOUR_API_KEY Subscribe message: { "action": "subscribe", "params": { "symbols": "AAPL,MSFT" } }
Always handle null values in responses. Implement retry/backoff for transient failures and 429 rate limits. Cache frequent reads to reduce credit usage. Check your current credit/rate limits in Twelve Data dashboard (plan-dependent).
When user asks for market data analysis: Resolve symbol with /symbol_search if ambiguous. Pull latest context with /price or /quote. Pull history with /time_series for selected interval/date range. Add indicators (/rsi, /macd, etc.) if technical analysis is requested. Add fundamentals endpoints only when user asks for financial statements or valuation context. Report endpoint, parameters, and plan limits clearly in output.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.