โ† All skills
Tencent SkillHub ยท Developer Tools

Twelve Data Market API

Use Twelve Data REST/WebSocket APIs for market quotes, latest prices, historical time series, symbol discovery, and technical indicators. Trigger when users...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Use Twelve Data REST/WebSocket APIs for market quotes, latest prices, historical time series, symbol discovery, and technical indicators. Trigger when users...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

Twelve Data

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

Base URLs

REST API: https://api.twelvedata.com WebSocket: wss://ws.twelvedata.com

Authentication

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.

Quick Setup

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

1) Latest price (/price, 1 credit/symbol)

curl "https://api.twelvedata.com/price?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}"

2) Real-time quote (/quote, 1 credit/symbol)

curl "https://api.twelvedata.com/quote?symbol=AAPL&apikey=${TWELVEDATA_API_KEY}"

3) Historical OHLCV (/time_series, 1 credit/symbol)

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

4) Symbol discovery (/symbol_search, 1 credit/request)

curl "https://api.twelvedata.com/symbol_search?symbol=apple&apikey=${TWELVEDATA_API_KEY}"

5) Technical indicators (typically 1 credit/symbol)

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}"

6) Fundamentals (plan-gated, higher credits)

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 and Multi-Asset Examples

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

WebSocket (Streaming)

Connect: wss://ws.twelvedata.com/v1/quotes/price?apikey=YOUR_API_KEY Subscribe message: { "action": "subscribe", "params": { "symbols": "AAPL,MSFT" } }

Reliability Guidance

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).

Skill Usage Workflow

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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc