from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
result = client.metadata_model_catalog.get_entry("model_id_value")
print(result){
"model_id": "<string>",
"name": "<string>",
"scope": "<string>",
"fields": [
{
"name": "<string>",
"type": "string",
"description": "<string>",
"index": true
}
],
"description": "<string>"
}from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
result = client.metadata_model_catalog.get_entry("model_id_value")
print(result){
"model_id": "<string>",
"name": "<string>",
"scope": "<string>",
"fields": [
{
"name": "<string>",
"type": "string",
"description": "<string>",
"index": true
}
],
"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.
Successful Response
A pre-built metadata extraction model from the catalog, selectable by model_id.
Stable ID used to reference this model when configuring a datasource
Human-readable model name
Visibility of the model (e.g. 'global', 'customer', 'project')
Field definitions this model extracts
Show child attributes
What this model is designed to extract
Was this page helpful?