Skip to main content
GET
/
datasources
/
{datasource_id}
/
tables
/
{table_name}
/
columns
Python
from meibel import MeibelClient

client = MeibelClient(api_key="your-api-key")

result = client.datasources.tables.list_columns("datasource_id_value", "table_name_value")
print(result)
[
  {
    "column_name": "<string>",
    "type": "<string>",
    "description": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Meibel-API-Key
string
header
required

Path Parameters

datasource_id
string
required
table_name
string
required

Response

Successful Response

column_name
string
required

Column name as defined in the source table

type
string | null

SQL data type of the column (e.g. 'varchar', 'integer')

description
string | null

Human-authored description of what this column represents