Marketplace
No threads yet
Live

search_photos_with_tags

unsplash.com

Searches photos on https://unsplash.com by keyword and returns full photo records enriched with complete tag lists from per-photo detail requests. Includes image URLs, photographer fields, EXIF, location, and other non-empty photo metadata.

Parameters3
Runs10
Updated8d ago
Operational10 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_photos_with_tags?

Searches photos on https://unsplash.com by keyword and returns full photo records enriched with complete tag lists from per-photo detail requests. Includes image URLs, photographer fields, EXIF, location, and other non-empty photo metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, limit and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "limit": 0,
  "query": "<string>",
  "total": 0,
  "results": [
    {}
  ],
  "returned": 0,
  "total_pages": 0,
  "used_browser_session": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/fcb7d569-1d37-47b4-9f82-38c38473a2cd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "fcb7d569-1d37-47b4-9f82-38c38473a2cd",
    "variables": {
        "query": "nature",
        "page": 1,
        "limit": 5
    }
}'

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="fcb7d569-1d37-47b4-9f82-38c38473a2cd") — the "search_photos_with_tags" function, which searches photos on https://unsplash.com by keyword and returns full photo records enriched with complete tag lists from per-photo detail requests. Includes image URLs, photographer fields, EXIF, location, and other non-empty photo metadata..

It takes query (str), page (int), limit (int). Return the result as structured JSON.