Vai al contenuto
GET /v1/user

A member profile and recent posts

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/stocktwits-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/stocktwits-api/v1/user" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stocktwits-api/v1/user", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stocktwits-api/v1/user");
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/user",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "bio": null,
        "name": "Stocktwits",
        "ideas": 134708,
        "source": "StockTwits",
        "location": null,
        "messages": [
            {
                "id": 656148534,
                "body": "@androsForm epic...",
                "name": "Stocktwits",
                "likes": null,
                "symbols": [],
                "username": "Stocktwits",
                "sentiment": null,
                "created_at": "2026-06-11T16:35:10Z"
            },
            {
                "id": 656145136,
                "body": "$ADBE earnings after the close today - any buyers out there or could this get under $200?",
                "name": "Stocktwits",
                "likes": null,
                "symbols": [
                    "ADBE"
                ],
                "username": "Stocktwits",
                "sentiment": null,
                "created_at": "2026-06-11T16:11:07Z"
            },
            {
                "id": 656140304,
                "body": "@Mjohns92 used $SLS gains for a down payment on a house - amazing story",
                "name": "Stocktwits",
                "likes": null,
                "symbols": [
                    "SLS"
                ],
                "username": "Stocktwits",
                "sentiment": null,
                "created_at": "2026-06-11T15:40:16Z"
            },
            {
                "id": 656139578,
                "body": "$ORCL now down over 10% - who else is buying at these levels?",
                "name": "Stocktwits",
                "likes": null,
                "symbols": [
                    "ORCL"
                ],
                "username": "Stocktwits",
                "sentiment": null,
                "created_at": "2026-06-11T15:35:47Z"
            },
            {
                "id": 656131237,
                "body": "$TTD hitting a fresh 52-week low today - @Tradingsean thinks $OPEAZZX.P should just buy the company",
                "name": "Stocktwits",
                "likes": null,
                "symbols": [
                    "TTD",
                    "OPEAZZX.P"
                ],
                "username": "Stocktwits",
                "sentiment": null,
                "created_at": "2026-06-11T14:50:26Z"
            },
            {
                "id": 656114120,
                "body": "@Fartdust have data pinned to SPY feed, is there a preferred way you would want to see that information when it comes out?",
                "name": "Stocktwits",
                "likes": null,
                "symbols": [],
                "username": "Stocktwits",
                "sentiment": null,
                "created_at": "2026-06-11T13:29:23Z"
            },
            {
                "id": 656112551,
                "body": "$CPNG “only” a $410 million fine sends Coupang stock soaring in the premarket",
                "name": "Stocktwits",
                "likes": null,
                "sy
…