/v1/pin
Pin details
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/pinterest-api/v1/pin" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pinterest-api/v1/pin", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pinterest-api/v1/pin");
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/pin",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"pin": {
"id": "142567144448722388",
"url": "https://www.pinterest.com/pin/142567144448722388/",
"link": "https://www.nasa.gov/stem-content/what-comes-next-game/",
"board": {
"id": "142567213143159083",
"url": "/nasa/learn-with-nasa/",
"name": "Learn With NASA"
},
"image": "https://i.pinimg.com/originals/67/e6/ae/67e6ae6e1f4cbbc84854b21e5a85eb96.png",
"title": "NASA Games: What Comes Next?",
"domain": "nasa.gov",
"pinner": {
"id": "142567281862381039",
"username": "nasa",
"full_name": "NASA"
},
"is_video": false,
"created_at": "Mon, 01 Jun 2026 11:35:30 +0000",
"description": "Students can develop their pattern skills by playing this game correlated to the National Council of Teachers of Mathematics standard: Recognize, describe and extend patterns, such as sequences of sounds and shapes or simple numeric patterns, and translate from one representation to another.",
"repin_count": 0,
"comment_count": 0,
"dominant_color": "#456998"
}
},
"meta": {
"timestamp": "2026-06-07T16:47:52.777Z",
"request_id": "f34bd1f2-d979-4194-8a7c-bedc316278f8"
},
"status": "ok",
"message": "Pin retrieved successfully",
"success": true
}