/v1/user
Public profile and engagement stats
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}