Add a Column via Web Research
Finding the pricing for a single SaaS product is easy. Doing it for 246 products means visiting 246 separate pricing pages, each with a different layout and pricing model. That volume of web research needs to happen in parallel.
Here, we find the annual price of the lowest paid tier for 246 SaaS products, by visiting each product's pricing page.
| Metric | Value |
|---|---|
| Rows | 246 |
| Cost | $5.28 |
| Time | 5.5 minutes |
| Success rate | 100% |
Add FutureSearch to Claude Code if you haven't already:
claude mcp add futuresearch --scope project --transport http https://mcp.futuresearch.ai/mcp
Download the dataset: saas_products.csv (246 SaaS and developer tools like Slack, Notion, Asana). With the CSV in your working directory, tell Claude:
For each product in saas_products.csv, find the annual price of its lowest paid tier.
Visit the product's pricing page to find this. If only monthly pricing is shown,
multiply by 12. Return the price and the tier name. If no paid tier exists, use 0.
Claude calls FutureSearch's agent MCP tool to dispatch web research agents for every row:
Tool: futuresearch_agent
├─ task: "Find the pricing for this SaaS product's lowest paid tier..."
├─ input_csv: "/Users/you/saas_products.csv"
└─ response_schema: {"lowest_paid_tier_annual_price": "float", "tier_name": "string"}
→ Submitted: 246 rows for processing.
Session: https://futuresearch.ai/sessions/5c19ee04-f1ac-45c6-bf01-a2b77515011b
Task ID: 5c19...
Tool: futuresearch_progress
├─ task_id: "5c19..."
→ Running: 0/246 complete, 246 running (15s elapsed)
Tool: futuresearch_progress
→ Running: 123/246 complete, 123 running (150s elapsed)
...
Tool: futuresearch_progress
→ Completed: 246/246 (0 failed) in 327s.
Tool: futuresearch_results
├─ task_id: "5c19..."
├─ output_path: "/Users/you/saas_pricing.csv"
→ Saved 246 rows to /Users/you/saas_pricing.csv
Add the FutureSearch connector if you haven't already. Then upload saas_products.csv and ask Claude:
For each product, find the annual price of its lowest paid tier. Visit the product's pricing page to find this. If only monthly pricing is shown, multiply by 12. Return the price and the tier name. If no paid tier exists, use 0.
Go to futuresearch.ai/app, upload saas_products.csv, and enter:
For each product, find the annual price of its lowest paid tier. Visit the product's pricing page to find this. If only monthly pricing is shown, multiply by 12. Return the price and the tier name. If no paid tier exists, use 0.
pip install futuresearch
export FUTURESEARCH_API_KEY=your_key_here # Get one at futuresearch.ai/app/api-key
import asyncio
import pandas as pd
from pydantic import BaseModel, Field
from futuresearch import create_session
from futuresearch.ops import agent_map
class PricingInfo(BaseModel):
lowest_paid_tier_annual_price: float = Field(
description="Annual price in USD for the lowest paid tier. "
"Use monthly price * 12 if only monthly shown. "
"0 if no paid tier exists."
)
tier_name: str = Field(
description="Name of the lowest paid tier (e.g. 'Pro', 'Starter', 'Basic')"
)
async def main():
df = pd.read_csv("saas_products.csv") # Single column: product
async with create_session(name="SaaS pricing lookup") as session:
result = await agent_map(
session=session,
task="""
Find the pricing for this SaaS product's lowest paid tier.
Visit the product's pricing page to find this information.
Look for the cheapest paid plan (not free tier). Report:
- The annual price in USD (if monthly, multiply by 12)
- The name of that tier
If the product has no paid tier or pricing isn't public, use 0.
""",
input=df,
response_model=PricingInfo,
)
print(result.data)
asyncio.run(main())
Results
| Product | Annual Price | Tier |
|---|---|---|
| 1Password | $35.88 | Individual |
| Airtable | $240.00 | Team |
| Amplitude | $588.00 | Plus |
| Notion | $96.00 | Plus |
| Slack | $87.00 | Pro |
45 products (18.3%) correctly reported $0 for products with usage-based pricing (AWS ECR, Anthropic API) or no public pricing. Each result includes a research trail showing how the agent found the answer, with citations linking back to sources.
Built with FutureSearch. See the agent_map documentation for more options including response models and effort levels.