Humantic AI MCP / Tools / humantic_miia_report_fetch_v1
Account Intelligence Miia

humantic_miia_report_fetch_v1

Retrieve the full finished report.

At a glance

Key inputs

create_request_id; optional format (md / html / pdf — default md), nocache.

Upstream API

GET /v1/miia/fetch

Example ask
Give me the full Acme Corp report.
Example tool call
humantic_miia_report_fetch_v1({
  "create_request_id": "8f3a2c9e1b7d4e6fa0c5d2b7e9134a6c",
  "format": "md"
})
Example output
{
  "status_code": 200,
  "status": "success",
  "message": "Report found",
  "data": {
    "create_request_id": "8f3a2c9e1b7d4e6fa0c5d2b7e9134a6c",
    "buyer_company": "Acme Corp",
    "buyer_company_domain": "acme.com",
    "seller_company": "Humantic AI",
    "seller_company_domain": "humantic.ai",
    "analysis_type": "deep",
    "created_at": "2026-08-21T09:14:02",
    "executive_summary_markdown": "## 1. Executive Summary\n\n### Company Overview\n\nAcme Corp is mid-way through an operations-efficiency mandate set by the board in Q1. It has opened 12 ops roles this quarter and the CEO called back-office automation \"priority one\" on the Q2 call. VP Operations Sarah Chen owns the budget. [3] [9] [11]\n\n### Financial Summary\n\n- Revenue: **$1.2 billion** FY2025, up 8%. [13]\n- Key risk: the 10-K lists operating cost as a principal risk factor. [32]\n\n### Key Initiatives\n\n1. Cut operating overhead **20%+ by FY27**. …",
    "executive_summary_heading_array": ["Executive Summary", "Company Overview", "Financial Summary", "Key Initiatives", "Leadership Statements", "Recommended Approach for Humantic AI", "Strategic Priorities", "Tactical Opportunities", "Relevant Organizational Structure", "Industry Trends", "Suggested Discovery Questions", "Next Best Actions", "Conclusion"],
    "full_report_markdown": "## Acme Corp Introduction\n\n### Company Basics and Ownership\n\nAcme Corp is a privately held industrial-supply distributor headquartered in Austin, Texas. …",
    "full_report_heading_array": ["Acme Corp Introduction", "Leadership Context", "Market Position", "Financial Context", "Recent Developments", "Technology Stack", "Hiring Activity & Job Postings", "Buying Intent Signals", "Customer And Industry Language", "References"]
  },
  "usage_stats": {
    "miia_report": {
      "period":    { "startDate": "2026-07-23T00:00:00.000Z", "endDate": "2026-09-02T21:59:03.000Z" },
      "limits":    { "deep": 5, "moderate": 20, "custom": 99 },
      "consumed":  { "deep": 1, "moderate": 0,  "custom": 0 },
      "remaining": { "deep": 4, "moderate": 20, "custom": 99 }
    }
  },
  "_status": "ready",
  "_trace_id": "7f42509abac6cf9c"
}
// a deep report runs to ~280K chars of Markdown — prefer sections_list + section_get for targeted questions
Good to know. Returns the complete report as compact Markdown by default; html gives a standalone styled render. format: "pdf" returns two shareable download links (full report + executive summary) once processing is complete. For long reports, prefer sections_list + section_get to pull only what you need.