How to open an IFC file without Revit
Updated · IFCfiles team
You can open an IFC file without Revit in your browser, with a free desktop viewer, or in free BIM software like BlenderBIM — no Autodesk license involved. Which one to pick depends on what "open" means for you: look at the model, pull data out of it, or actually edit it.
This lands in every AEC inbox eventually: a consultant sends building-final.ifc,
you don't have Revit (or your one license is on your colleague's machine), and the meeting is
at three. Here are the six ways that work, fastest first.
1. Open the IFC file in your browser (fastest)
A browser-based viewer needs zero installation and works on any OS, which makes it the answer for the "meeting at three" case. Drop the file into our free online IFC viewer and you get the 3D model with the spatial tree (site → building → storeys), click-to-inspect properties, section planes, measurements and PNG snapshots. It reads .ifc and .ifczip, IFC2x3 through IFC4x3.
One thing to check with any online viewer: where the processing happens. Ours parses the model locally in your browser with WebAssembly — the file never leaves your machine, so NDA models are fine. Viewers that upload to a server for processing may be fine too, but that is a decision your confidentiality agreement gets a say in, not just you.
2. Install a free desktop viewer
If you review models every week, a desktop viewer earns its disk space: better performance on very large federated models and full offline use. The field in short — BIM Vision (Windows, plugin ecosystem, the QS favorite), Open IFC Viewer (fast, modern), Solibri Anywhere (free tier of the checking suite), usBIM.viewer (part of ACCA's free platform). We compared them honestly, limits included, in the best free IFC viewers.
3. Skip the 3D — go straight for the data
Half the time nobody needs to see the model; they need what's in it. Does every door have a FireRating? What's the GlobalId of that pump? How many square meters of partition wall per floor?
For that, rendering geometry is overhead. Our IFC properties explorer indexes the model without any 3D and lets you search by name, class or GlobalId — it stays snappy even on models with hundreds of thousands of elements. When the destination is a spreadsheet anyway, convert the IFC to Excel and get every class as its own sheet, properties flattened into columns, quantities included.
4. BlenderBIM — free and it can edit
Everything above is read-only. BlenderBIM (the Bonsai add-on for Blender, built on IfcOpenShell) is the serious free option when you must change the model: it authors IFC natively, meaning it edits the actual IFC data rather than converting it through a proprietary format. The learning curve is real — it's Blender plus BIM concepts — but the capability rivals paid tools, and the community moves fast.
FreeCAD deserves the same mention: its BIM workbench opens and edits IFC, feels more CAD-like than Blender, and also costs nothing.
5. Other authoring tools you might already have
No Revit doesn't mean no BIM software. ArchiCAD, Tekla Structures, Vectorworks, Allplan and BricsCAD BIM all import IFC. Trial versions can cover a one-off need. The caveat applies everywhere: importing converts IFC entities into the tool's native objects, which is slower than viewing and can alter data — if you then need to hand the model onward as editable Revit or DWG, read how to convert IFC without losing data before promising anyone anything.
6. The nerd option: a text editor
IFC is plain text (STEP encoding, ISO 10303-21). VS Code opens a 50 MB IFC fine, and
sometimes that's exactly what you want: check the header (FILE_SCHEMA tells you
the version; the preprocessor line tells you which tool exported it), find an entity by its
GlobalId, count occurrences of a class. Nobody inspects geometry this way, but for a quick
forensic look — "was this exported from Revit 2023 or ArchiCAD 27?" — it beats installing
anything. Curious what all those lines mean? That's covered in
what is an IFC file?
Which one should you use?
| You need to… | Use |
|---|---|
| Look at the model right now | Browser viewer — 30 seconds, nothing installed |
| Review models daily / offline | BIM Vision or Open IFC Viewer (desktop) |
| Check properties, audit a delivery | Properties explorer or Excel export |
| Edit the model | BlenderBIM or FreeCAD |
| Identify the exporting software/version | Any text editor (read the header) |
The takeaway: Revit is an authoring tool, and most of what people do with a received IFC — view, measure, check, extract — never needed authoring in the first place.