List library models
Start from the script setup block, then add the snippet code below.
# ... script setup ...
models = api_get( "/v1/asset-library/-/models", params={ "ownerContextIds": [ORGANIZATION_ID], "page": "1", "limit": "20", "sortBy": "createdAt", "sortDir": "DESC", "includeStatus": ["ready"], },)print(json.dumps(models, indent=2))