Skip to main content
GET
/
meetings
/
{id}
/
analysis
cURL
curl https://app.mavera.io/api/v1/meetings/meeting_123/analysis \
  -H "Authorization: Bearer mvra_live_your_key_here"
{
  "id": "<string>",
  "object": "meeting.analysis",
  "meeting_id": "<string>",
  "status": "<string>",
  "version": 123,
  "processing_time_ms": 123,
  "summary": "<string>",
  "key_takeaways": [
    "<string>"
  ],
  "topics": [
    "<string>"
  ],
  "sentiment": "<string>",
  "enhanced_output": {},
  "highlights": [
    {
      "id": "<string>",
      "quote": "<string>",
      "speaker": "<string>",
      "speaker_participant_id": "<string>",
      "category": "<string>",
      "significance": "<string>",
      "timestamp_start": 123,
      "timestamp_end": 123
    }
  ],
  "tasks": [
    {
      "id": "<string>",
      "content": "<string>",
      "owner": "<string>",
      "owner_email": "<string>",
      "priority": "low",
      "status": "pending",
      "due_date": "2023-11-07T05:31:56Z",
      "due_date_confidence": 123,
      "category": "<string>",
      "evidence_spans": [
        {}
      ],
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "decisions": [
    {
      "id": "<string>",
      "statement": "<string>",
      "owner": "<string>",
      "status": "<string>",
      "deadline": "2023-11-07T05:31:56Z",
      "evidence_spans": [
        {}
      ],
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "coaching_metrics": {
    "talk_ratios": {},
    "overall_host_talk_ratio": 123,
    "total_questions_asked": 123,
    "question_rate": 123,
    "interruptions": 123,
    "longest_monologue": 123,
    "average_response_time": 123,
    "filler_word_count": 123,
    "sentiment_over_time": [
      {
        "timestamp": 123,
        "sentiment": 123
      }
    ],
    "next_step_confirmed": true,
    "mutual_plan_created": true,
    "objection_handling_score": 123,
    "discovery_completeness_score": 123
  },
  "schema_results": [
    {
      "id": "<string>",
      "schema_id": "<string>",
      "schema_name": "<string>",
      "schema_category": "sales_discovery",
      "field_values": {},
      "scores": {},
      "overall_score": 123,
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "error": "<string>",
  "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.

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

Response

Meeting analysis

id
string
object
enum<string>
Available options:
meeting.analysis
meeting_id
string
status
string
version
integer
processing_time_ms
integer | null
summary
string | null

AI-generated summary

key_takeaways
string[]

Key points from the meeting

topics
string[]

Topics discussed

sentiment
string | null

Overall sentiment of the meeting

enhanced_output
object

Additional AI analysis output

highlights
object[]

Key moments from the meeting

tasks
object[]
decisions
object[]
coaching_metrics
object

Sales coaching metrics (for sales calls)

schema_results
object[]

Schema extraction results applied to this meeting

error
string | null
created_at
string<date-time>
updated_at
string<date-time>