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_public = client.api.datasets.retrieve( dataset_id="dataset_id",)print(dataset_public.id)
Retrieves detailed information for a specific dataset by its ID.
GET
/
api
/
datasets
/
{dataset_id}
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_public = client.api.datasets.retrieve( dataset_id="dataset_id",)print(dataset_public.id)