import osfrom woodwide import WoodWideclient = WoodWide( api_key=os.environ.get("WOOD_WIDE_AI_API_KEY"), # This is the default and can be omitted)dataset_publics = client.api.datasets.list()print(dataset_publics)
Retrieves a list of all datasets associated with the current user. Returns dataset metadata including ID, name, size, and schema.
GET
/
api
/
datasets
Python
Copy
Ask AI
import osfrom woodwide import WoodWideclient = WoodWide( api_key=os.environ.get("WOOD_WIDE_AI_API_KEY"), # This is the default and can be omitted)dataset_publics = client.api.datasets.list()print(dataset_publics)