/v1/user
A user's public profile
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/devto-api/v1/user" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/devto-api/v1/user", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/devto-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/devto-api/v1/user",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"user": {
"name": "Ben Halpern",
"github": "benhalpern",
"summary": "A Canadian software developer who thinks he’s funny.",
"twitter": "bendhalpern",
"website": "http://benhalpern.com",
"location": "NY",
"username": "ben",
"joined_at": "Dec 27, 2015",
"profile_image": "https://media2.dev.to/dynamic/image/width=320,height=320,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1%2Fbabb96d0-9cd2-49bc-a412-2dc4caf94c2a.png"
}
},
"meta": {
"timestamp": "2026-06-01T16:23:47.822Z",
"request_id": "453342a4-137f-400b-a4cc-b1e6f51eab8b"
},
"status": "ok",
"message": "User retrieved",
"success": true
}