Universe Search
Search Roboflow Universe projects, datasets, and models programmatically with the Python SDK.
Python SDK
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
Search Universe
Options
Flag
Description
Examples
JSON Output
Last updated
Was this helpful?