Marketplace
No threads yet
Live

search_native_plants_by_name

wildflower.org

Searches the Native Plant Database at https://www.wildflower.org by scientific or common name. Returns the first page of up to 10 matches with USDA symbols, names, image-gallery information, and the total match count.

Parameters1
Runs10
Updated10d ago
Degraded10 runs · 90% 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_native_plants_by_name?

Searches the Native Plant Database at https://www.wildflower.org by scientific or common name. Returns the first page of up to 10 matches with USDA symbols, names, image-gallery information, and the total match count. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "plants": [
    {
      "detail_url": "<string>",
      "usda_symbol": "<string>",
      "common_names": [
        "<string>"
      ],
      "image_gallery": [
        {
          "gallery_url": "<string>",
          "image_count": 0,
          "thumbnail_url": "<string>"
        }
      ],
      "scientific_name": "<string>"
    }
  ],
  "total_count": 0,
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/21efcfa9-36b1-4535-be14-fac670d4946e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "21efcfa9-36b1-4535-be14-fac670d4946e",
    "variables": {
        "query": "milkweed"
    }
}'

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="21efcfa9-36b1-4535-be14-fac670d4946e") — the "search_native_plants_by_name" function, which searches the Native Plant Database at https://www.wildflower.org by scientific or common name. Returns the first page of up to 10 matches with USDA symbols, names, image-gallery information, and the total match count..

It takes query (str). Return the result as structured JSON.