Vai al contenuto
GET /v1/user

User profile

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/pinterest-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}