/v1/user
A user's public profile
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}