Speakers

Get Person

Get a speaker's name, titles, and events in which they spoke


GET /person/{person_id}

ParameterTypeDataTypeDescription
person_idpathintegerThe person id to fetch metadata and events in which the person spoke

Response

{
  "name": "Andrew D. Baglino",
  "titles": [
    "SVP of Powertrain & Energy Engineering",
    "CTO"
  ],
  "events": [
    {
      "event_id": 2329999,
      "call_type": "earnings",
      "call_date": "2023-01-25T17:30:00",
      "title": "Q4 2022 Tesla Inc Earnings Call"
    }
  ],
  "q_and_a": [
    {
      "event_id": 1566875,
      "question": {
        "summary": {
          "extract": "...",
          "abridged": null
        },
        "speakers": [
          {
            "person_id": 100411,
            "speaker_name": "Andrew D. Baglino"
          }
        ],
        "linguistics": {
          "tonal": null,
          "topics": [
            {
              "topic": "Kato",
              "position": 1,
              "topic_id": 30030
            },
            {
              "topic": "Supply Chain",
              "position": 2,
              "topic_id": 61
            }
          ],
          "sentiments": {
            "median": 0.36005,
            "average": 0.29241,
            "maximum": 0.7184,
            "minimum": 0
          },
          "other_terms": []
        }
      },
      "answer": {
        "summary": {
          "extract": "...The next question is..."
          "abridged": null
        },
        "speakers": [
          {
            "person_id": 6897,
            "speaker_name": "Martin Viecha"
          },
          {
            "person_id": 6898,
            "speaker_name": "Elon R. Musk"
          },
          {
            "person_id": 100411,
            "speaker_name": "Andrew D. Baglino"
          },
          {
            "person_id": 6902,
            "speaker_name": "Jerome Guillen"
          }
        ],
        "linguistics": {
          "tonal": -0.317011,
          "topics": [
            {
              "topic": "Cybertruck",
              "position": 1,
              "topic_id": 2645497
            },
            {
              "topic": "FSD",
              "position": 2,
              "topic_id": 2593
            },
            {
              "topic": "Dojo",
              "position": 3,
              "topic_id": 2607
            },
            {
              "topic": "Autopilot",
              "position": 4,
              "topic_id": 2599
            },
            {
              "topic": "Level 5",
              "position": 5,
              "topic_id": 538276
            },
            {
              "topic": "Standard",
              "position": 6,
              "topic_id": 9366
            },
            {
              "topic": "Full Self-Driving",
              "position": 7,
              "topic_id": 47342484
            },
            {
              "topic": "Model 3",
              "position": 8,
              "topic_id": 2591
            },
            {
              "topic": "Model Y",
              "position": 9,
              "topic_id": 2592
            }
          ],
          "sentiments": {
            "median": 0.4019,
            "average": 0.21900243902439032,
            "maximum": 0.8934,
            "minimum": -0.4449
          },
          "other_terms": []
        }
      }
    }
  ]
}

Code Samples

Bash

curl --request GET \
  --url 'https://premium.aiera.com/api/events/person/{person_id}' \
  --header 'X-API-Key: xxx'

Python

import requests
requests.get("https://premium.aiera.com/api/events/person/{person_id}", headers={"X-API-Key": "xxx"})
Previous
Events with Topic