/v1/user
A user's public profile
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}