Skip to main content
GET
/
meetings
/
{id}
/
schema-results
Get meeting schema results
curl --request GET \
  --url https://app.mavera.io/api/v1/meetings/{id}/schema-results \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "meeting_id": "<string>",
  "data": [
    {
      "id": "<string>",
      "object": "meeting.schema_result",
      "meeting_id": "<string>",
      "schema_id": "<string>",
      "schema_name": "<string>",
      "schema_category": "sales_discovery",
      "field_values": [
        {
          "field_name": "<string>",
          "field_label": "<string>",
          "field_type": "text",
          "is_required": true,
          "value": "<unknown>",
          "quote": "<string>",
          "confidence": 123,
          "score": 123,
          "score_rationale": "<string>"
        }
      ],
      "scores": {},
      "overall_score": 123,
      "evidence": [
        {
          "field_name": "<string>",
          "text": "<string>",
          "speaker": "<string>",
          "speaker_id": "<string>",
          "timestamp_start": 123,
          "timestamp_end": 123
        }
      ],
      "processing_time_ms": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.mavera.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.

Path Parameters

id
string
required

Meeting ID

Query Parameters

schema_id
string

Filter by specific schema ID

include_evidence
boolean
default:true

Include evidence spans for each field (default true)

Response

Schema results for the meeting

object
enum<string>
Available options:
list
meeting_id
string
data
object[]
total
integer