/v1/search/pins
Search pins
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/search/pins" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pinterest-api/v1/search/pins", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pinterest-api/v1/search/pins");
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/pins",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"pins": [
{
"id": "1900024838134773",
"url": "https://www.pinterest.com/pin/1900024838134773/",
"link": "https://www.pinterest.com/pin/687854543071549380/",
"board": {
"id": "1900093531834996",
"url": "/missjuliafaye/nails/",
"name": "Nails 💅🏼"
},
"image": "https://i.pinimg.com/originals/73/95/55/7395559c4fce054508e021d5c13fa616.jpg",
"title": "",
"domain": "pinterest.com",
"pinner": {
"id": "1900162251228482",
"username": "missjuliafaye",
"full_name": "Julia Van Den Hende"
},
"is_video": false,
"created_at": "Fri, 05 Jul 2024 02:27:48 +0000",
"description": " ",
"dominant_color": "#2f3481"
},
{
"id": "703756189320619",
"url": "https://www.pinterest.com/pin/703756189320619/",
"board": {
"id": "703824880817940",
"url": "/darcieg09/psh-i-got-this-diy/",
"name": "Psh, I got this! (DIY)"
},
"image": "https://i.pinimg.com/originals/92/e5/31/92e53128ecc90c62ff34267b4f7b922f.jpg",
"title": "galaxy 🌌",
"domain": "Uploaded by user",
"pinner": {
"id": "703893600208949",
"username": "darcieg09",
"full_name": "Darcie Greenhood"
},
"is_video": false,
"created_at": "Wed, 06 May 2026 03:08:08 +0000",
"description": " ",
"dominant_color": "#332a6a"
},
{
"id": "80220437108563717",
"url": "https://www.pinterest.com/pin/80220437108563717/",
"board": {
"id": "80220505801971594",
"url": "/annikaw0307/2026-reading/",
"name": "2026 reading"
},
"image": "https://i.pinimg.com/originals/52/9d/7b/529d7beac197ee47583a65a14cab83c3.png",
"title": "Galaxy",
"domain": "Uploaded by user",
"pinner": {
"id": "80220574520968338",
"username": "annikaw0307",
"full_name": "Annika Westerberg"
},
"is_video": false,
"created_at": "Wed, 20 May 2026 05:16:45 +0000",
"description": " ",
"dominant_color": "#1c1d44"
},
{
"id": "422281212150628",
"url": "https://www.pinterest.com/pin/422281212150628/",
"board": {
"id": "422349904476177",
…