Search for registry items
To search for a registry item:- Navigate to the W&B Registry App.
- Specify the search term in the search bar at the top of the page. Press Enter to search.

Query registry items with MongoDB-style queries
Use thewandb.Api().registries() and query predicates to filter registries, collections, and artifact versions based on one or more MongoDB-style queries.
The following table lists query names you can use based on the type of item you want to filter:
| query name | |
|---|---|
| registries | name, description, created_at, updated_at |
| collections | name, tag, description, created_at, updated_at |
| versions | tag, alias, created_at, updated_at, metadata |
wandb.Api().registries() method, first import the W&B Python SDK (wandb) library:
model:
yolo in the collection name:
yolo in the collection name and possesses cnn as a tag:
model and has either the tag image-classification or an latest alias:
artifacts iterable in the previous code snippet is an instance of the Artifact class. This means that you can access each artifact’s attributes, such as name, collection, aliases, tags, created_at, and more:
YYYY-MM-DD HH:MM:SS. You can omit the hours, minutes, and seconds if you want to filter by date only.
See the MongoDB documentation for more information on query comparisons.