Run a schema against a meeting’s transcript to extract structured data. Uses AI to analyze the transcript and extract field values based on the schema definition.
curl -X POST https://app.mavera.io/api/v1/meetings/meeting_123/schemas/schema_456/run \
-H "Authorization: Bearer mvra_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{}'{
"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"
}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.
API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
Schema run result
meeting.schema_result Category of the meeting schema
sales_discovery, qualification, objection_competitor, cs_health, product_feedback, custom Show child attributes
Scores per field
Show child attributes
Average score across all scored fields
Evidence spans from transcript
Show child attributes
curl -X POST https://app.mavera.io/api/v1/meetings/meeting_123/schemas/schema_456/run \
-H "Authorization: Bearer mvra_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{}'{
"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"
}