Skip to content
GET /v1/user/about

User profile

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/reddit-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/reddit-api/v1/user/about" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/reddit-api/v1/user/about", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/reddit-api/v1/user/about");
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/reddit-api/v1/user/about",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "id": "1w72",
        "icon": "https://styles.redditmedia.com/t5_3k30p/styles/profileIcon_uj015iwx9s7g1.png?width=256&height=256&crop=256:256,smart&s=aa819b0964f6e3019e769d1cc8ede7318c3869a3",
        "name": "spez",
        "is_mod": true,
        "is_gold": true,
        "over_18": false,
        "verified": true,
        "link_karma": 183082,
        "created_utc": 1118030400,
        "total_karma": 939006,
        "comment_karma": 755924
    },
    "meta": {
        "timestamp": "2026-06-07T16:48:57.674Z",
        "request_id": "a660c3e9-be97-4636-83e7-dd749e47a360"
    },
    "status": "ok",
    "message": "User info retrieved successfully",
    "success": true
}