XBRL to iXBRL Online Converter

Convert XBRL to iXBRL Online Free

The Free XBRL to iXBRL Converter lets you convert XBRL files online without signing up or logging in. There is no need for an email address since you can download the data directly to your computer. Furthermore, your files are secure as they are deleted from our servers after 24 hours.

XBRL to iXBRL Online Converter

How to Convert XBRL to iXBRL Online

  • Press the upload button and select the source XBRL file.
  • Click the Convert button to convert XBRL to iXBRL file.
  • Download the converted output file.

XBRL to iXBRL Converter - Developer’s Guide

You can easily create this XBRL converter into your application. The following details elaborate more information about it:

Convert XBRL to iXBRL in C#

You need to follow the steps below to convert an XBRL file to iXBRL format in C#:

  1. Access the input XBRL file.
  2. Initialize an instance of SaveOptions class.
  3. Render XBRL to iXBRL file.

The following sample code shows how to convert XBRL to iXBRL in C#:

// Load input XBRL file as XML format
XbrlDocument document = new XbrlDocument("IdScopeContextPeriodStartAfterEnd.xml");

// Set SaveOptions for output format
SaveOptions saveOptions = new SaveOptions();
saveOptions.SaveFormat = SaveFormat.IXBRL;

// Convert XBRL file to iXBRL file format
document.Save("ConvertXbrlToIXbrl_out.ixbrl", saveOptions);

XBRL to iXBRL Converter in Python

The steps below explain how to convert XBRL to iXBRL format using Python:

Configure Aspose.Finance for Python via .NET by downloading the package or running the following pip command to install it from PyPI:

pip install aspose-finance

Next, access the source XBRL file and convert it to iXBRL format with the following code snippet in Python:

from aspose.finance.xbrl import XbrlDocument,SaveOptions,SaveFormat

# Load the input file
document = XbrlDocument("IdScopeContextPeriodStartAfterEnd.xml")

# Set save options
Opts = SaveOptions()
Opts.save_format = SaveFormat.IXBRL

# Save XBRL file to IXBRL format
document.save("Converted-Xbrl-To-iXbrl_out.html", Opts)

Get a Free Evaluation License

You can get a free temporary license in order to evaluate the APIs to their full capacity.

Conclusion

In conclusion, this article explains how to convert XBRL to iXBRL format with online converter for free. Moreover, it also contains Developer’s Guide to create XBRL to iXBRL converter application. In case you have any concerns, you can write to us at free support forum.

See Also