Marketplace
No threads yet
Live

search_pins

pinterest.com

Returns Pinterest pin search results from https://pinterest.com with titles, descriptions, images, creator and pinner profiles, boards, dates, source domains and external links.

Parameters3
Runs7
Updated5h ago
Operational7 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_pins?

Returns Pinterest pin search results from https://pinterest.com with titles, descriptions, images, creator and pinner profiles, boards, dates, source domains and external links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, max_results, sort and get the result back without maintaining a scraper.

Response

{
  "pins": [
    {}
  ],
  "sort": "<string>",
  "count": 0,
  "query": "<string>",
  "pages_fetched": 0,
  "candidates_examined": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2b9d59c3-cefe-4c57-a12c-5334ea267975/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2b9d59c3-cefe-4c57-a12c-5334ea267975",
    "variables": {
        "query": "chocolate cake recipe",
        "max_results": 12,
        "sort": "relevance"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="2b9d59c3-cefe-4c57-a12c-5334ea267975") — the "search_pins" function, which returns Pinterest pin search results from https://pinterest.com with titles, descriptions, images, creator and pinner profiles, boards, dates, source domains and external links..

It takes query (str), max_results (int), sort (str). Return the result as structured JSON.