GET
/
v1
/
speaker-profiles
/
{id}
curl https://api.mavioapp.com/v1/speaker-profiles/spk_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "spk_a1b2c3d4e5",
  "name": "Sarah Chen",
  "email": "sarah@example.com",
  "organization": "Acme Corp",
  "stats": {
    "meeting_count": 24,
    "total_speaking_seconds": 18420,
    "avg_speaking_seconds_per_meeting": 767.5,
    "avg_words_per_minute": 142.3,
    "total_word_count": 43668
  },
  "recent_meetings": [
    {
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "meeting_title": "Weekly Product Sync",
      "started_at": "2026-04-10T14:00:00Z",
      "speaking_seconds": 842
    },
    {
      "meeting_id": "mtg_7e2d1c0b9a8g",
      "meeting_title": "Design Review — Onboarding Flow",
      "started_at": "2026-04-08T11:00:00Z",
      "speaking_seconds": 612
    }
  ],
  "last_seen_at": "2026-04-10T14:47:32Z",
  "created_at": "2026-01-15T09:00:00Z",
  "updated_at": "2026-04-10T14:52:08Z"
}
Returns the full speaker profile including aggregate statistics such as total speaking time, average words per minute, and a list of recent meeting appearances.
id
string
required
The unique speaker profile identifier (e.g., spk_a1b2c3d4e5).

Response

id
string
Unique speaker profile identifier.
name
string
Display name of the speaker.
email
string | null
Email address if available.
organization
string | null
Organization or company name.
stats
object
Aggregate statistics for this speaker.
recent_meetings
array
The 10 most recent meetings where this speaker appeared.
last_seen_at
string
ISO 8601 timestamp of the most recent meeting appearance.
created_at
string
ISO 8601 timestamp when the profile was created.
updated_at
string
ISO 8601 timestamp when the profile was last updated.
curl https://api.mavioapp.com/v1/speaker-profiles/spk_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "spk_a1b2c3d4e5",
  "name": "Sarah Chen",
  "email": "sarah@example.com",
  "organization": "Acme Corp",
  "stats": {
    "meeting_count": 24,
    "total_speaking_seconds": 18420,
    "avg_speaking_seconds_per_meeting": 767.5,
    "avg_words_per_minute": 142.3,
    "total_word_count": 43668
  },
  "recent_meetings": [
    {
      "meeting_id": "mtg_8f3k2j1m4n5p",
      "meeting_title": "Weekly Product Sync",
      "started_at": "2026-04-10T14:00:00Z",
      "speaking_seconds": 842
    },
    {
      "meeting_id": "mtg_7e2d1c0b9a8g",
      "meeting_title": "Design Review — Onboarding Flow",
      "started_at": "2026-04-08T11:00:00Z",
      "speaking_seconds": 612
    }
  ],
  "last_seen_at": "2026-04-10T14:47:32Z",
  "created_at": "2026-01-15T09:00:00Z",
  "updated_at": "2026-04-10T14:52:08Z"
}