Find what you need with our powerful search syntax:
cat hat | By default, search will find models that match all terms. |
cat or hat | Use "or" to find models that match any of the terms. |
cat -hat
cat !hat
cat not hat | To exclude terms, use "not", "!", or "-". |
"cat hat" | To look for multiple words in a single term, use quotes; only models with the exact text will be shown. |
(cat or hat) and not bat | Group terms with parentheses for more complex logic combinations. |
tag = cat | Finds models with a specific tag |
tag != cat | Use "!=" to find models without a certain tag |
creator ~ cat
collection ~ cat
caption ~ cat
description ~ cat | You can look for terms in a few specific fields. Use "~" to match part of the field; "=" will try to match the whole thing. Model descriptions and library names are only searched if you explicitly specify the fields. |
not set? tag | Use "set?" to query if a particular field is set, and add "not" to find the opposite. |
filename = cat.stl
filename ~ cat | You can search within filenames by explicitly specifying the field. |
@manyfold@3dp.chat | Search for any Fediverse username to follow it. |
For more information, read the full documentation for scoped_search's query language.