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

Spec

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

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

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

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

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

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

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

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

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

{
    "data": {
        "service": "pinterest-api",
        "endpoints": {
            "GET /v1/pin": "Pin details by id.",
            "GET /v1/meta": "This document.",
            "GET /v1/user": "User profile by username.",
            "GET /v1/board": "Board details by username + slug.",
            "GET /v1/user/pins": "A user's pins.",
            "GET /v1/board/pins": "A board's pins by board id.",
            "GET /v1/pin/related": "Related pins.",
            "GET /v1/search/pins": "Search pins.",
            "GET /v1/user/boards": "A user's boards.",
            "GET /v1/search/users": "Search users.",
            "GET /v1/search/boards": "Search boards."
        },
        "description": "Pinterest data: search pins/boards/users, pin and board details, board pins, user pins and boards — real live data."
    },
    "meta": {
        "timestamp": "2026-06-07T16:48:15.809Z",
        "request_id": "e4fa2569-e56a-490f-a311-b627b16295b3"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}