The fastest, most advanced, asynchronous Revit database exploration tool for Revit 2021+.
Yet another RevitLookup like tool. RevitLookup was an indispensable tool to work with Revit API for many years. But now, there is a better tool for the job. Let me introduce you to Revit database explorer. It not only allows us to explore database but also to:
- edit any parameter value
- query database with intuitive syntax that is translated into a FilteredElementCollector
- script by running ad hoc scripts written in C#
- visualize geometrical features of elements
List of features:
- easier work with Element.Geometry
- compare objects and parameters
- query Revit database
- script Revit database
- easy access to Revit API documentation
- edit parameter value
- extensive support for ForgeTypeId
- better support for Revit Extensible Storage
- dark and light UI themes
- snoop Revit events
Download and install RevitDBExplorer.msi. Setup will install Revit database explorer for Revit 2021, 2022, 2023, 2024, 2025.
- How to select elements that pass Rule-based Filter defined in Revit?
- How to find an element using its IfcGuid in Revit?
Revit database explorer provides visualization for geometrical features of various objects and also :
- an instance of GeometryObject can be selected in Revit if it has a valid reference
- mouse cursor position expressed in the Revit model coordinates can be find on the status bar
Learn more about Revit database visualization (RDV).
RDQ is capable of interpreting words separated by ,
as element ids, Revit classes, categories, parameters and many more. RDQ builds from them FilteredElementCollector and uses it to query Revit database.
Learn more about Revit database querying (RDQ).
RDS is able to compile and run C# code that is too small or ephemeral to make macro/dynamo/addon for it. RDS offers the quickest way to run C# code generated with generative AI chats (such as ChatGPT).
Learn more about Revit database scripting (RDS).
An example shows how to add a prefix to Mark
parameter for many selected elements as inputs for the script.
Tooltips work out-of-box, RevitApi.chm file is part of Revit .NET SDK and the path to it needs to be set manually.
We all love (or hate) the ForgeTypeId, Revit database explorer exposes all data related to a given ForgeTypeId scattered through many utils. You can also snoop all ForgeTypeIds returned from:
- ParameterUtils.GetAllBuiltInGroups
- ParameterUtils.GetAllBuiltInParameters
- UnitUtils.GetAllMeasurableSpecs
- UnitUtils.GetAllUnits
- UnitUtils.GetAllDisciplines
- SpecUtils.GetAllSpecs
ForgeTypeId label corresponds to static properties defined on:
Revit database explorer allows you to snoop all schemas that are loaded into Revit memory, and you can easily get all elements that have an entity of a given schema. You get access to Extensible Storage data exactly like through RevitAPI, by invoking: Element.GetEntity().
A new take on EventsMonitor from RevitSdkSamples . Revit database explorer stores the latest 30 events that occurred during Revit session and allows to snoop them. UIControlledApplication.Idling event and ControlledApplication.ProgressChanged events are not stored because they are too noisy - they happen too often. In order to use this feature, you need to enable event monitor, which by default is disabled.