Meetings
Get meeting schema results
Get all schema extraction results for a meeting. Schemas are used to extract structured data from meeting transcripts.
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>'import requests
url = "https://app.mavera.io/api/v1/meetings/{id}/schema-results"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.mavera.io/api/v1/meetings/{id}/schema-results', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.mavera.io/api/v1/meetings/{id}/schema-results"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"object": "list",
"meeting_id": "<string>",
"data": [
{
"id": "<string>",
"object": "meeting.schema_result",
"meeting_id": "<string>",
"schema_id": "<string>",
"schema_name": "<string>",
"field_values": [
{
"field_name": "<string>",
"field_label": "<string>",
"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
}{
"error": {
"message": "Invalid API key.",
"type": "authentication_error",
"code": "invalid_api_key",
"param": null
}
}{
"error": {
"message": "Invalid API key.",
"type": "authentication_error",
"code": "invalid_api_key",
"param": null
}
}{
"error": {
"message": "Invalid API key.",
"type": "authentication_error",
"code": "invalid_api_key",
"param": null
}
}Authorizations
API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
Path Parameters
Meeting ID
Query Parameters
Filter by specific schema ID
Include evidence spans for each field (default true)
⌘I
Get meeting schema results
curl --request GET \
--url https://app.mavera.io/api/v1/meetings/{id}/schema-results \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.mavera.io/api/v1/meetings/{id}/schema-results"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.mavera.io/api/v1/meetings/{id}/schema-results', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.mavera.io/api/v1/meetings/{id}/schema-results"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"object": "list",
"meeting_id": "<string>",
"data": [
{
"id": "<string>",
"object": "meeting.schema_result",
"meeting_id": "<string>",
"schema_id": "<string>",
"schema_name": "<string>",
"field_values": [
{
"field_name": "<string>",
"field_label": "<string>",
"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
}{
"error": {
"message": "Invalid API key.",
"type": "authentication_error",
"code": "invalid_api_key",
"param": null
}
}{
"error": {
"message": "Invalid API key.",
"type": "authentication_error",
"code": "invalid_api_key",
"param": null
}
}{
"error": {
"message": "Invalid API key.",
"type": "authentication_error",
"code": "invalid_api_key",
"param": null
}
}