secure
Get Metadata Per Schema
Fetches metadata for specified schema from a source.
Args: source_name (str): Source name. schema (Optional[str]): Schema name. Defaults to None. tables (Optional[str]): Comma-separated list of table names to filter by. Defaults to None.
Returns: MetadataResponse: Detailed metadata information for the specified schema and tables, or all schemas/tables if none specified.
get/api/v1/pipelines/sources/{source_name}/metadata
Path parameters
source_namestring required
Query parameters
schemastring nullable
tablesstring nullable
Comma-separated list of table names to filter by
Comma-separated list of table names to filter by
Response
Successful Response
Example response
{
"tables": {
"table1": {
"cdc_ready": true,
"columns": {}
}
}
}