Skip to main content
GET
/
api
/
datasets
Python
import os
from woodwide import WoodWide

client = 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)
[
  {
    "id": "<string>",
    "name": "<string>",
    "num_rows": 123,
    "file_size_bytes": 123,
    "dataset_schema": {
      "columns": [
        {
          "name": "<string>",
          "type": "<string>",
          "values": [
            "<unknown>"
          ]
        }
      ]
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

name
string | null

Response

Successful Response

id
string
required
name
string
required
num_rows
integer
required
file_size_bytes
integer
required
dataset_schema
Schema · object
required