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_columns("table_name_value", "datasource_id_value") print(result)
[ { "column_name": "<string>", "type": "<string>", "description": "<string>" } ]
Successful Response
Column name as defined in the source table
SQL data type of the column (e.g. 'varchar', 'integer')
Human-authored description of what this column represents
Was this page helpful?