Μετάβαση στο περιεχόμενο
GET /v1/pin

Pin details

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/pinterest-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}