Skip to main content
GET
/
datasources
/
{datasource_id}
/
tables
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>"
      }
    ]
  }
]

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

Query Parameters

include_columns
boolean
default:false

Include columns for each table

Response

Successful Response

table_name
string
required

Table name as defined on the datasource

description
string | null

Human-authored description of what this table represents

columns
TagColumn · object[] | null

Columns on the table — only populated when explicitly requested via include_columns