cURL
curl --request GET \ --url https://api.example.com/api/metadata/database \ --header 'Authorization: Bearer <token>'
{ "tables": [ { "name": "posts", "recordCount": 5678 }, { "name": "comments", "recordCount": 9012 } ], "totalTables": 15, "totalRecords": 16924, "databaseSize": "125 MB", "lastUpdated": "2024-01-21T10:30:00Z" }
Get database statistics and table information for dashboard
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Database metadata
Show child attributes