FinchContext
Run with

Build SEC EDGAR Inline XBRL (iXBRL)

Skill: Convert financial statements into SEC EDGAR Inline XBRL

Region: United States Category: SEC / Disclosure Does: Takes a registrant's financial statements and tags them as Inline XBRL (iXBRL) — the XHTML-with-embedded-XBRL-facts format the SEC requires for the financial statements and cover data in 10-K, 10-Q, 8-K (financial exhibits), and registration statements filed on EDGAR. Spec: SEC EDGAR Filer Manual (Vol. II) · Inline XBRL 1.1 · US-GAAP Financial Reporting Taxonomy + DEI taxonomy (FASB/SEC, annual release)

Inline XBRL embeds machine-readable facts inside the human-readable XHTML document, so one file serves both. The authority is the EDGAR Filer Manual plus the annually updated US-GAAP taxonomy — using a stale taxonomy year is a common rejection cause. Filing requires EDGAR credentials (CIK + CCC, filer codes); operating companies (incl. smaller reporting companies, phased in) must tag in iXBRL.


When this applies


iXBRL building blocks

Concept Carries
Fact a tagged value — <ix:nonFraction> (numeric) or <ix:nonNumeric> (text), inline in the XHTML
Concept / element the taxonomy element the fact reports (e.g. us-gaap:Revenues, us-gaap:Assets)
Context the period (instant vs duration) and entity (CIK) a fact applies to
Unit for numeric facts — iso4217:USD, xbrli:shares, USD/shares
Dimensions (axis/member) disaggregation — e.g. revenue by srt:ProductOrServiceAxis / a product member
Scale / sign / decimals scale="3" (thousands), sign="-", decimals/precision
DEI document & entity information (form type, period, CIK, fiscal year focus, shares outstanding)

Tagging rules


Worked example (one revenue fact, inline)

<!-- "$1,234" thousands of revenue for FY2025 -->
Revenue:
<ix:nonFraction
   name="us-gaap:Revenues"
   contextRef="FY2025"            <!-- duration 2025-01-01..2025-12-31, entity CIK 0001234567 -->
   unitRef="usd"                  <!-- iso4217:USD -->
   decimals="-3"
   scale="3"
   format="ixt:num-dot-decimal">1,234</ix:nonFraction>
<!-- tagged value = 1,234 × 10^3 = $1,234,000 -->

With contexts/units declared in the hidden <ix:header> (FY2025 period + entity CIK; usd unit), and the same XHTML rendering the visible financial statement.


Validation checklist


Last updated: 2026-05-31 — the US-GAAP taxonomy and EDGAR Filer Manual update annually; confirm the current taxonomy year, element selection, iXBRL formatting, and EDGAR submission rules against the current SEC EDGAR Filer Manual and FASB taxonomy before filing.