Universe Search
Search Roboflow Universe for public projects and models from Python.
Search
from roboflow.adapters import rfapi
results = rfapi.search_universe(
"vehicles",
api_key="YOUR_API_KEY",
project_type="object-detection", # optional
limit=12,
page=1,
)
for project in results.get("results", []):
print(project["workspace"], project["project"], project["name"])Parameters
Response
Run a Universe model directly
CLI equivalent
Last updated
Was this helpful?