Transcript LOL API
GET
/spaces/{spaceId}/recordings/{recordingId}/insights

Get insights

This will return all insights generated from this recording's transcript

/spaces/{spaceId}/recordings/{recordingId}/insights

The Authorization access token

Authorization

x-api-key<token>

In: header

Path Parameters

spaceId
Required
string

ID of the workspace. You can find from the url in dashboard when you open the workspace or using the list workspaces endpoint.

recordingId
Required
string

ID of the recording. You can find from the url in dashboard when you open the workspace or using the list recordings endpoint.

curl -X GET "https://transcript.lol/api/v1/spaces/string/recordings/string/insights" \
  -H "Authorization: <token>"

Insights

[
  {
    "id": "string",
    "content": "string",
    "tweaks": [
      "string"
    ],
    "prompt": {
      "id": "string",
      "title": "string"
    }
  }
]