Marketplace
No threads yet
Live

get_native_plant_details

wildflower.org

Retrieves a native plant record by USDA symbol from https://www.wildflower.org. Returns taxonomy, characteristics, bloom and distribution data, growing requirements, wildlife benefits, propagation guidance, media, metadata, and related record sections.

Parameters1
Runs13
Updated10d ago
Operational13 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 get_native_plant_details?

Retrieves a native plant record by USDA symbol from https://www.wildflower.org. Returns taxonomy, characteristics, bloom and distribution data, growing requirements, wildlife benefits, propagation guidance, media, metadata, and related record sections. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass usda_symbol and get the result back without maintaining a scraper.

Response

{
  "media": {},
  "benefits": {},
  "metadata": {},
  "taxonomy": {},
  "propagation": {},
  "usda_symbol": "<string>",
  "descriptions": [
    "<string>"
  ],
  "distribution": {},
  "bloom_information": {},
  "growing_conditions": {},
  "butterfly_moth_hosts": [
    {}
  ],
  "plant_characteristics": {},
  "supplemental_sections": [
    {
      "links": [
        {
          "url": "<string>",
          "text": "<string>"
        }
      ],
      "title": "<string>",
      "content": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5b093b8f-0f46-4ab0-8d47-3fca236ce4bb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5b093b8f-0f46-4ab0-8d47-3fca236ce4bb",
    "variables": {
        "usda_symbol": "ASAS"
    }
}'

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="5b093b8f-0f46-4ab0-8d47-3fca236ce4bb") — the "get_native_plant_details" function, which retrieves a native plant record by USDA symbol from https://www.wildflower.org. Returns taxonomy, characteristics, bloom and distribution data, growing requirements, wildlife benefits, propagation guidance, media, metadata, and related record sections..

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