Connecting to the Hyperspace Server
hyperspace_client = hyperspace.HyperspaceClientApi(host=host_address,
username=username,
password=password)import io.hyperspace.client.HyperspaceClient;
HyperspaceClient hyperspaceClient = new HyperspaceClient(host, username, password);const hs = require('hyperspace-js')
const hyperspaceClient = new hs.HyperspaceClient(host_address, username, password); print(hyperspace_client.collections_info())Object info = hyperspaceClient.collectionsInfo();
System.out.println(new Gson().toJson(info));const { data } = await hyperspaceClient.info();
console.log(data);{'collections': {'qa_collection': {'creation_time': '2025-06-10T11:30:14Z', 'size': 29607}}}Last updated