top of page

Advertising Inquiry and Account Setup

Apply to advertise on MOBALON Radio, the station for barbers, stylists, and mobile salons. This is an inquiry to apply to advertise; it is not a signed insertion order and not a payment page. Fill out the form below and we will be in touch. Questions? info@mobalonradio.com | 800-406-7711 | 844-MOBALON (662-2566) | 3824 Cedar Springs Rd PMB 406, Dallas, TX 75219-4136

bottom of page
// npm install ws import WebSocket from 'ws'; const ws = new WebSocket('wss://api.x.ai/v1/realtime?agent_id=agent_ouzQwLpxYkee1q8O', { headers: { Authorization: `Bearer ${process.env.XAI_API_KEY}` }, }); ws.on('open', () => { ws.send(JSON.stringify({ type: 'conversation.item.create', item: { type: 'message', role: 'user', content: [{ type: 'input_text', text: 'Hello!' }] }, })); ws.send(JSON.stringify({ type: 'response.create' })); }); ws.on('message', raw => { const event = JSON.parse(raw.toString()); if (event.type === 'response.output_audio_transcript.delta') { process.stdout.write(event.delta); } else if (event.type === 'response.output_audio.delta') { const pcm = Buffer.from(event.delta, 'base64'); // decode and play } });