from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Pagination - iterate over all items
for item in client.artifact_schemas.list():
print(item){
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"type": "<string>",
"fields_summary": [
{
"name": "<string>",
"type": "<string>"
}
]
}
],
"total": 123
}from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Pagination - iterate over all items
for item in client.artifact_schemas.list():
print(item){
"data": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"type": "<string>",
"fields_summary": [
{
"name": "<string>",
"type": "<string>"
}
]
}
],
"total": 123
}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.
Number of items to skip
x >= 0Maximum number of items to return
x >= 1Field to sort by: created_at, name, display_name
Sort order: asc or desc
^(asc|desc)$Was this page helpful?