cURL
curl --request GET \ --url https://api.example.com/api/metastore/catalogs/details \ --header 'Authorization: Bearer <token>'
{ "catalogs": [ { "name": "<string>", "catalog_type": "<string>", "is_system": true, "properties": {}, "schema_count": 123, "table_count": 123, "view_count": 123, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ], "total": 123 }
Get detailed information for all non-system catalogs including properties. System catalogs (system, hive, llm, iceberg, and environment catalog) are excluded.
The access token received from the authorization server in the OAuth 2.0 flow.
Catalog details retrieved successfully.
List of catalog details
Show child attributes
Total number of catalogs
Was this page helpful?