/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/stocktwits-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stocktwits-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stocktwits-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/stocktwits-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "symbol is a cashtag without the $ (AAPL, TSLA, BTC.X). username is a StockTwits handle. Each post may carry a Bullish/Bearish sentiment where the author set one. Streams are cached briefly to respect StockTwits' rate limit.",
"source": "StockTwits API v2 (api.stocktwits.com/api/2, live)",
"service": "stocktwits-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/user": "A member's profile and recent posts (username=Stocktwits).",
"GET /v1/symbol": "A ticker's live message stream with sentiment, plus title and watcher count (symbol=AAPL).",
"GET /v1/trending": "Tickers being discussed most on StockTwits right now."
},
"description": "Live data from StockTwits, the social network for traders and investors where every post is tagged with the stock and crypto tickers (cashtags) it is about and an optional Bullish/Bearish sentiment. The symbol endpoint returns a ticker's live message stream plus its title and watcher count; the trending endpoint returns the tickers being discussed most right now; the user endpoint returns a member's profile (followers, following, ideas, likes) and recent posts. Live, no key, nothing stored. The trader-social-network cut — distinct from the price, market-data and FX-signal APIs.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T16:46:39.716Z",
"request_id": "9a5875f5-9abe-45d1-8c03-710d6f746b3b"
},
"status": "ok",
"message": "Meta",
"success": true
}