GET /api/public-users/{user_id}

Public user profile

Returns public IMDb member details from [imdb.com/user/<user_id>/](https://www.imdb.com/user/ur153324018/) including name, join date, profile image URL, reviews count, and ratings count.

Live testen

Ein freier Call pro Sitzung — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/VK-Scraper

Code-Snippets

curl "https://api.oanor.com/VK-Scraper/api/public-users/{user_id}" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/VK-Scraper/api/public-users/{user_id}", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/VK-Scraper/api/public-users/{user_id}");
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/VK-Scraper/api/public-users/{user_id}",
    headers={"x-oanor-key": "oanor_test_..."}
)