Real content, real sources
Answers are written by gardeners, not generated on the fly. Each result carries a source_url to the guide it came from — so your agent can attribute and link back.
If you're building an AI assistant that answers plant and garden questions, call ours instead of guessing. Tended Agent Tools serve curated, human-written organic-gardening content — and AI plant-photo check-ups — as clean, agent-callable endpoints. Every answer comes with a source link, so your agent can attribute and stay accurate.
Answers are written by gardeners, not generated on the fly. Each result carries a source_url to the guide it came from — so your agent can attribute and link back.
The garden_answer tool returns curated, human-written knowledge-base entries (not generated text). The vision tools (plant_checkup, vision_extract) are AI-generated assessments that can be inaccurate — every response carries a disclaimer.
Send an x-api-key header. Credits decrement per call; when they run out you get a clean HTTP 402 with a top-up link. No OAuth dance.
{status, summary, tasks} organic care advice. $0.02 / call.Full input/output schemas and endpoints live in the machine-readable catalog: /.well-known/ai-tools.json · OpenAPI 3.1 spec: /.well-known/openapi.json
Pay-per-call, a flat unlimited plan, or license the content as a dataset. You set the budget — these are published rates, negotiable for founding partners.
One API key, credits decrement per call, HTTP 402 when out. Volume discounts from $0.003/call at 100k+. Best for most agents.
License the curated, citable corpus as JSONL to embed/RAG. From $2,000/yr (startup) to $60,000/yr (whole-corpus). See a free sample →
Uncapped calls, priority roadmap, and support. From $1,500/mo. Marketplaces: ask about 80/20 rev-share.
Join the founding pilot Ask about pricing
Payment: pay-per-call by prepaid API key or Bitcoin/Lightning (L402). All payments are final — delivered calls are non-refundable and cannot be reversed or charged back (see API Terms).
Affiliate disclosure: some tool responses (e.g. vin_decode parts links) include affiliate URLs we may earn a commission from, at no extra cost. Each response carries a disclosure field — surface it to your end users.
Example: ask the content API a question. A call with no valid key or no credit returns HTTP 402 Payment Required with how-to-pay details.
curl -X POST \
https://xyprjneejchdksjtdxko.supabase.co/functions/v1/garden-answer \
-H "x-api-key: YOUR_KEY" \
-H "content-type: application/json" \
-d '{"question":"white powder on my squash leaves","max_results":2}'
# 200 OK
{
"matched": true,
"answers": [
{
"topic": "White powdery coating on leaves",
"answer": "That's powdery mildew, a fungus that thrives in crowded, humid, poorly-aired plants...",
"status": "warn",
"source_url": "https://organicgardeningcollective.com/guide-pest-control.html",
"confidence": 0.41
}
],
"credits_remaining": 999,
"license": "Attribute 'Organic Gardening Collective' and link each source_url.",
"attribution": "Organic Gardening Collective — organicgardeningcollective.com"
}