Expert Access

Get Expert Access Event

Get a specific expert access event from a specific provider


GET /expert-access-v1/{provider}/{event_id}

ParameterTypeDataTypeDescription
providerpathstringWhich expert access provider to search (Third Bridge)
event_idpathstringWhich event ID to return

Response

{
    "uuid": "UUID",
    "contentType": "CONTENT_TYPE",
    "language": {
        "id": "eng",
        "idPath": "eng",
        "label": "English"
    },
    "title": "Example Title",
    "specialists": [
        {
            "title": "TITLE",
            "initials": "SP"
        }
    ],
    "moderators": [
        {
            "id": "ID",
            "initials": "IN"
        }
    ],
    "targetCompanies": [
        {
            "name": "Company A",
            "snp": {
                "ticker": "COMA",
                "exchangeCode": "NasdaqGS",
                "figi": "1111111111"
            },
            "countryOfDomicile": "US"
        }, ...
    ],
    "relevantCompanies": [
        {
            "name": "Company B",
            "snp": {
                "ticker": "COMB",
                "exchangeCode": "",
                "figi": null
            },
            "countryOfDomicile": "US"
        }, ...
    ],
    "start": "2025-08-11T16:00:00.000Z",
    "transcriptUploadedAt": "2025-08-11T18:46:42.000Z",
    "agenda": [
        ...
    ],
    "keyInsights": [
        ...
    ],
    "transcript": [
        {
            "timestamp": "[00:00:00]",
            "discussionItem": [
                {
                    "content": "Transcript goes here",
                    "isKeyQuestion": false,
                    "paragraphIndex": 0,
                    "speakerInitials": "SI",
                    "section": "",
                    "question": true
                }
            ]
        }, ...
    ]
}

Code Samples

Bash

curl --request GET \
  --url 'https://premium.aiera.com/api/expert-access-v1/{provider}/{event_id}' \
  --header 'X-API-Key: xxx'

Python

import requests
requests.get("https://premium.aiera.com/api/expert-access-v1/{provider}/{event_id}", headers={"X-API-Key": "xxx"})
Previous
Find Events