/v1/user/boards
A user's boards
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/pinterest-api/v1/user/boards" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pinterest-api/v1/user/boards", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pinterest-api/v1/user/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/user/boards",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 25,
"boards": [
{
"id": "142567213143159083",
"url": "https://www.pinterest.com/nasa/learn-with-nasa/",
"name": "Learn With NASA",
"image": "https://i.pinimg.com/474x/bc/4b/d4/bc4bd4150190ef8ac96e9ff6c4f3e806.jpg",
"owner": {
"username": "nasa",
"full_name": "NASA"
},
"privacy": "public",
"pin_count": 1616,
"created_at": "Mon, 05 Dec 2016 19:34:54 +0000",
"description": "Activities, resources, and opportunities from NASA and its partners that are designed to engage K-12 students in the agency's missions.",
"section_count": 0,
"follower_count": 527547
},
{
"id": "142567213143304042",
"url": "https://www.pinterest.com/nasa/first-woman/",
"name": "First Woman",
"image": "https://i.pinimg.com/474x/f2/71/86/f2718619a55e3d61c52bb9e7bb6aed2e.jpg",
"owner": {
"username": "nasa",
"full_name": "NASA"
},
"privacy": "public",
"pin_count": 6,
"created_at": "Mon, 26 Jul 2021 19:35:40 +0000",
"description": "",
"section_count": 0,
"follower_count": 526679
},
{
"id": "142567213143137742",
"url": "https://www.pinterest.com/nasa/humans-in-space/",
"name": "Humans in Space",
"image": "https://i.pinimg.com/474x/c2/62/09/c2620934b510ee64d46f2954490a1ec4.jpg",
"owner": {
"username": "nasa",
"full_name": "NASA"
},
"privacy": "public",
"pin_count": 754,
"created_at": "Mon, 20 Jun 2016 15:28:45 +0000",
"description": "",
"section_count": 0,
"follower_count": 526992
},
{
"id": "142567213143317821",
"url": "https://www.pinterest.com/nasa/nasa-news/",
"name": "NASA News",
"image": "https://i.pinimg.com/474x/5b/b9/1f/5bb91fd61bc2dc8773cb5e031dcfb532.jpg",
"owner": {
"username": "nasa",
"full_name": "NASA"
},
"privacy": "public",
"pin_count": 53,
"created_at": "Mon, 04 Apr 2022 15:14:11 +0000",
"description": "",
"section_count": 0,
"follower_count": 526681
},
{
"id": "142567213142990264",
"url": "https://www.pinterest.com/nasa/space-tech-formerly-technology-drives-exploration/",
…