Retrieves database stats
OK
const response = await fetch('https://eos.nownodes.io/v1/db_size/get', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "free_bytes": 0, "used_bytes": 0, "size": 0, "indices": [ { "index": "text", "row_count": 0 } ] }