/v1/user
Public profile and engagement stats
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}