/v1/user
User 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/pinterest-api/v1/user" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pinterest-api/v1/user", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pinterest-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/pinterest-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": {
"id": "142567281862381039",
"url": "https://www.pinterest.com/nasa/",
"about": "Explore the universe and discover our home planet with the official NASA boards on Pinterest. Visit us at www.nasa.gov",
"image": "https://i.pinimg.com/280x280_RS/37/a1/75/37a175e6d2431425576f0b8f81389394.jpg",
"website": "http://www.nasa.gov/",
"username": "nasa",
"verified": true,
"full_name": "NASA",
"pin_count": 10544,
"board_count": 82,
"follower_count": 556990,
"following_count": 5
}
},
"meta": {
"timestamp": "2026-06-07T16:47:41.834Z",
"request_id": "5bd1ddb7-3b86-4c2c-86d0-bed072f8d485"
},
"status": "ok",
"message": "User retrieved successfully",
"success": true
}