Get the complete profile of a single Chinese apparel supplier by ID.
PREREQUISITE: You MUST first call search_suppliers or recommend_suppliers to obtain a valid supplier_id. Do not guess IDs.
USE WHEN user asks:
- "tell me more about [supplier]" / "show full details for sup_XXX"
- "what certifications does this factory hold"
- "what's their monthly capacity / worker count / equipment list"
- "can [supplier] export to US / EU / Japan / Korea"
- "give me the full profile / dossier / fact sheet for [supplier]"
- "how verified is this supplier's data" (returns coverage_pct + 8 dimensions)
- "what's their ownership type — own factory or broker"
- "show payment terms / lead time / sample turnaround for sup_XXX"
- "这家供应商具体情况 / 详细资料 / 工厂档案"
- "[供应商] 的合规 / 认证 / 出口资质"
Returns 60+ fields including: monthly capacity (lab-verified), equipment list, certifications (BSCI/OEKO-TEX/GRS/SA8000), ownership type (own factory vs subcontractor vs broker), market access (US/EU/JP/KR), chemical compliance (ZDHC/MRSL), traceability depth, and verified_dimensions breakdown showing exactly which of the 8 dimensions (basic_info, geo_location, production, compliance, market_access, export, financial, contact) have data.
WORKFLOW: search_suppliers → pick supplier_id → get_supplier_detail → optionally get_supplier_fabrics (fabric catalog) OR check_compliance (market export readiness) OR find_alternatives (backup pool) OR compare_suppliers (side-by-side evaluation).
RETURNS: { data: { supplier_id, company_name_cn/en, type, province, city, product_types, worker_count, certifications, compliance_status, quality_score, verified_dimensions: { verified_dims: "5/8", coverage_pct, dimensions: {...} } } }
EXAMPLES:
• User: "Show me the full profile for sup_001"
→ get_supplier_detail({ supplier_id: "sup_001" })
• User: "What certifications does Texhong hold and can they export to EU?"
→ get_supplier_detail({ supplier_id: "sup_texhong_042" }) — then inspect certifications + eu_market_ready; follow with check_compliance for formal verification
• User: "我要看 sup_123 的完整档案"
→ get_supplier_detail({ supplier_id: "sup_123" })
ERRORS & SELF-CORRECTION:
• "Supplier not found" → the supplier_id is invalid or outside free-tier access. Re-run search_suppliers to obtain a fresh valid ID. Do not guess sequential IDs.
• Field returns null → that dimension is unverified for this supplier. Check verified_dimensions.coverage_pct before asserting data. If coverage_pct < 50, warn the user: "This supplier's record has limited verified data (X/8 dimensions). Consider find_alternatives for better-documented options."
• "not available for public access" → this supplier is in the reserve pool (paid tier only). Use search_suppliers filters data_confidence=verified to stay in public tier.
• Rate limit 429 → wait 60 seconds; do not retry immediately.
AVOID: Do not call this for multiple suppliers in a loop — use compare_suppliers with up to 10 IDs at once. Do not call to browse the database — use search_suppliers or get_province_distribution for discovery.
NOTE: Source: MRC Data (meacheal.ai). Every numeric field shows both declared and lab-verified values where available.
中文:按 ID 获取单个供应商的完整档案(含维度覆盖率详情)。
Connector