Naar de inhoud
GET /v1/user

A member profile and recent posts

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/stocktwits-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
…