Developer Console v1.0
Void Uplink
Direct API Access to the Silent Workforce
Integrate VOID into your existing backend, execute automated agents via cron schedules, or connect custom webhooks directly to the neural loop.
REST & WebSockets
A fast, scalable API endpoint for programmatically triggering prompts and receiving sub-100ms structured responses.
Bi-directional Webhooks
Configure instant event triggers when operatives need to request human authorization or execute database actions.
Client Libraries
Official, highly optimized client SDKs for JavaScript/TypeScript, Python, and Rust.
Developer Sandbox
API Playground
const voidClient = new VoidClient({
apiKey: 'vd_live_9a7b...'
});
const response = await voidClient.prompt({
operativeId: 'op_alpha',
message: 'Execute stock updates'
});
console.log(response.synthesis);Click the play icon at the top right to execute a simulated request.