/v1/search/boards
Search boards
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/pinterest-api/v1/search/boards" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pinterest-api/v1/search/boards", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pinterest-api/v1/search/boards");
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/search/boards",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 50,
"query": "recipes",
"boards": [
{
"id": "645633365269360182",
"url": "https://www.pinterest.com/crazylaurablog/recipes/",
"name": "Recipes",
"image": "https://i.pinimg.com/474x/db/1a/2d/db1a2d937d73308546b89551b3ead26f.jpg",
"owner": {
"username": "crazylaurablog",
"full_name": "Crazy Laura | Bujo | DIY & Crafts | Home Decor | Recipes"
},
"privacy": "public",
"pin_count": 4358,
"description": "Whether you're looking for a new instant pot recipe or need inspiration for those cupcakes you're baking for the birthday party... we have it covered! Check out the best recipes and follow for more ideas!",
"section_count": 0
},
{
"id": "567735165464352545",
"url": "https://www.pinterest.com/smrtscholhouse/recipes/",
"name": "Recipes",
"image": "https://i.pinimg.com/474x/58/a5/bf/58a5bf417a77ad64402d111fb17a7a06.jpg",
"owner": {
"username": "smrtscholhouse",
"full_name": "Smart School House - DIY Crafts and Easy Recipes"
},
"privacy": "public",
"pin_count": 12954,
"description": "Easy Pinterest Recipes are simple, creative, and family-friendly meals and desserts that are trending on Pinterest. From quick weeknight dinners and one-pan dishes to no-bake desserts and holiday favorites, these viral recipes are visually stunning, easy to follow, and perfect for saving, sharing, and trying at home!",
"section_count": 0
},
{
"id": "206110189135392594",
"url": "https://www.pinterest.com/missmustardseed/recipes/",
"name": "Recipes",
"image": "https://i.pinimg.com/474x/34/57/a0/3457a0f4df49e0cb4de45002d2855b16.jpg",
"owner": {
"username": "missmustardseed",
"full_name": "Miss Mustard Seed | Maryland Home Decor Blogger & Artist"
},
"privacy": "public",
"pin_count": 2019,
"description": "Vegetarian recipes and other yummy things",
"section_count": 0
},
{
"id": "79446449615738350",
"url": "https://www.pinterest.com/easyfamrecipes/recipes/",
"name": "RECIPES",
"image": "https://i.pinimg.com/474x/50/a3/b6/50a3b63e2a25b79cad824bd5eb74231a.jpg",
"owner": {
"username": "easyfamrecipes",
"full_name": "Easy Family Recipes"
},
"privacy": "public",
"pin_count": 5303,
"descri
…