Search Model Sets Stay organized with collections Save and categorize content based on your preferences.
Search model sets
Returns all model set records that match the given search criteria.If multiple search params are given andfilter_or is FALSE or not specified,search params are combined in a logical AND operation.Only rows that matchall search param criteria will be returned.
Iffilter_or is TRUE, multiple search params are combined in a logical OR operation.Results will include rows that matchany of the search criteria.
String search params use case-insensitive matching.String search params can contain% and '_' as SQL LIKE pattern match wildcard expressions.example="dan%" will match "danger" and "Danzig" but not "David"example="D_m%" will match "Damage" and "dump"
Integer search params can accept a single value or a comma separated list of values. The multiplevalues will be combined under a logical OR operation - results will match at least one ofthe given values.
Most search params can accept "IS NULL" and "NOT NULL" as special expressions to matchor exclude (respectively) rows where the column is null.
Boolean search params accept only "true" and "false" as values.
Request
Response
200: Model Set
400: Bad Request
404: Not Found
429: Too Many Requests
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-02-09 UTC.