Workspace Plan and Usage
Read your workspace's plan and usage from the Python SDK.
Get plan
import roboflow
rf = roboflow.Roboflow(api_key="YOUR_API_KEY")
workspace = rf.workspace()
plan = workspace.get_plan()
print(plan["name"]) # e.g. "growth"
print(plan.get("limits", {})) # included image / inference / training quotasGet usage
usage = workspace.get_usage()
print(usage)REST equivalent
CLI equivalent
Last updated
Was this helpful?