Skip to content

008Q Playground

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.


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

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

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.


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

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

Process an audio file using 008Q

POST https://base.008agent.ai/api/v1/008q
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"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"]
}
}

Extract information from raw text using your schema

POST https://base.008agent.ai/api/v1/008q-extract
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"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.