Vai al contenuto
GET /v1/user

Public profile and engagement stats

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/gettr-api/v1/user" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gettr-api/v1/user", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gettr-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/gettr-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": "Voice of the fastest growing social media platform in history. Home to free speech, independent thought, and superior technology.",
        "joined": "2021-09-23T19:37:10.993Z",
        "source": "GETTR",
        "website": "www.gettr.com",
        "language": "en_us",
        "location": "New York, NY",
        "nickname": "GETTR Official",
        "username": "gettr",
        "followers": 17087010,
        "following": 56,
        "ousername": "gettr",
        "influencer_level": 4,
        "twitter_followers": null
    },
    "meta": {
        "timestamp": "2026-06-11T16:47:32.942Z",
        "request_id": "840c9e52-b043-4ee7-b089-d8d27ddd9935"
    },
    "status": "ok",
    "message": "User retrieved successfully",
    "success": true
}