008Q Playground
008Q Playground Overview
Section titled “008Q Playground Overview”The 008Q Playground is your testing lab for 008 Agent’s proprietary AI audio processing engine, 008Q. It lets you extract structured insights from real-time or historical call recordings using a custom JSON schema.
🎯 What Is 008Q?
Section titled “🎯 What Is 008Q?”008Q is a powerful API that allows you to:
- 🔁 Process real-time or historical call audio
- 🧠 Extract advanced insights from voice conversations
- 🧾 Define what you want (e.g., summaries, satisfaction scores, customer names, order IDs)
- 🔄 Send results wherever you want via webhook or API callback
🧪 The Playground Interface
Section titled “🧪 The Playground Interface”Use the 008Q Playground to test your prompts and schema before calling the API directly:
- Upload a sample audio file (WAV, MP3, etc.)
- Choose output language (e.g.
en,es,fr) - Define a custom JSON schema with the fields you want extracted
- See the output on-screen and iterate instantly
008Q Playground Overview
Section titled “008Q Playground Overview”The 008Q Playground is your testing lab for 008 Agent’s proprietary AI audio processing engine, 008Q. It lets you extract structured insights from real-time or historical call recordings using a custom JSON schema.
🎯 What Is 008Q?
Section titled “🎯 What Is 008Q?”008Q is a powerful API that allows you to:
- 🔁 Process real-time or historical call audio
- 🧠 Extract advanced insights from voice conversations
- 🧾 Define what you want (e.g., summaries, satisfaction scores, customer names, order IDs)
- 🔄 Send results wherever you want via webhook or API callback
🧪 The Playground Interface
Section titled “🧪 The Playground Interface”Use the 008Q Playground to test your prompts and schema before calling the API directly:
- Upload a sample audio file (WAV, MP3, etc.)
- Choose output language (e.g.
en,es,fr) - Define a custom JSON schema with the fields you want extracted
- See the output on-screen and iterate instantly
📡 API Usage Examples
Section titled “📡 API Usage Examples”🔊 POST /008q
Section titled “🔊 POST /008q”Process an audio file using 008Q
POST https://base.008agent.ai/api/v1/008q🔧 Headers
Section titled “🔧 Headers”Authorization: Bearer YOUR_API_KEYContent-Type: application/json🧳 Body Payload
Section titled “🧳 Body Payload”{ "audio_url": "https://yourserver.com/audio/sample.mp3", "language": "es", "language_hint": "es", "schema": { "type": "object", "properties": { "summary": { "type": "string" }, "satisfaction_score": { "type": "number" }, "agent_rating": { "type": "number" } }, "required": ["summary", "satisfaction_score", "agent_rating"] }}🧠 POST /008q-extract
Section titled “🧠 POST /008q-extract”Extract information from raw text using your schema
POST https://base.008agent.ai/api/v1/008q-extract🔧 Headers
Section titled “🔧 Headers”Authorization: Bearer YOUR_API_KEYContent-Type: application/json🧳 Body Payload
Section titled “🧳 Body Payload”{ "text": "Good morning. My name is Ana Pérez and I’m calling about order 1000-20240611. Everything was great, I give it a 5.", "schema": { "type": "object", "properties": { "order_id": { "type": "string" }, "rating": { "type": "number" }, "customer_name": { "type": "string" } }, "required": ["order_id", "rating", "customer_name"] }}Use the Playground to perfect your JSON schema before launching live API calls from your contact center. It saves time and ensures you only extract what really matters.