Supplier Research and Comparison
Finding new suppliers is one of the most time-consuming things buyers do. Google searches, sector forums, fair catalogs, sending emails and waiting for replies — it can take days. AI brings it down to hours, with objective scoring and risk screening included.
What AI does
- Discover new suppliers (by sector + region + certifications)
- Multi-criteria supplier scoring (price, MOQ, quality, location, certifications)
- Price comparison matrix (auto currency conversion across TRY/USD/EUR)
- Risk analysis (financials, lawsuits, customer reviews, sanctions lists)
- Alternative manufacturer / backup-source search (break single-supplier risk)
Recommended tools
Example prompt: Classic supplier comparison prompt
Compare GMP-certified private-label cosmetics manufacturers in Europe as a table: - Company name, location, estimated annual revenue - MOQ (minimum order quantity) and price range (€/unit) - Certifications: GMP, ISO 22716, ECOCERT/COSMOS - Lead time (days) + sea/road shipping options - Public customer references (if any) - Known risk flags (if any) List at least 8 firms. Cite the source next to each.
Build it with Claude Code
Have Claude Code build a 'supplier research assistant': given criteria it combines Perplexity API + web scraping + certification-verification APIs and returns a structured JSON table. Results auto-write to Notion/Airtable for team review.
Automation flow
Ready prompt for Claude Code
You are a developer building a 'supplier research' automation for a procurement department.
Goal: create /src/procurement/sourceSuppliers.ts.
Input: {
productCategory: string,
region: string ('Europe', 'Asia', 'Turkey'…),
certifications: string[] (e.g. ['GMP', 'ISO 22716']),
maxMoq: number,
targetPriceRange: [min, max, currency]
}
Flow:
1. Perplexity Sonar API structured search: region + category + certifications.
2. For each firm returned, extra scraping (HTTP request): if it has a site, fetch 'about', 'certifications', 'contact'.
3. Certification verification: query GMP/ECOCERT/COSMOS registries by company name + country.
4. Send everything to Anthropic Claude Sonnet, structured output:
{
name, location, estimated_revenue, certifications: { cert, verified: bool }[],
moq_range, price_indication, lead_time_days, score_0_100, score_reasoning,
risk_flags: string[], sources: { type, url }[]
}
5. Write to Notion 'Supplier Candidates' database via writeNotion.ts.
6. Notify Slack: 'Found X firms, top 3 are…'
Notion property types: Name (title), Score (number), MOQ (number), Price (rich_text), Certifications (multi_select), Verified (checkbox), Risk Flags (multi_select), Sources (rich_text), Status (status: 'New' | 'Reviewing' | 'Rejected' | 'Approved').
Show the plan first.Don't trust a supplier's own website as a 'source of truth' — everyone claims to be 'the leader.' Always verify certifications through an independent registry (EudraGMDP for GMP, the official ECOCERT database for ECOCERT). Otherwise you've just scored a 'fake-certificate' supplier.