Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python
from meibel import MeibelClient client = MeibelClient(api_key="your-api-key") result = client.datasources.tables.list("datasource_id_value") print(result)
[ { "table_name": "<string>", "description": "<string>", "columns": [ { "column_name": "<string>", "type": "<string>", "description": "<string>" } ] } ]
Include columns for each table
Successful Response
Table name as defined on the datasource
Human-authored description of what this table represents
Columns on the table — only populated when explicitly requested via include_columns
Show child attributes
Was this page helpful?