Skip to main content
GET
/
v2
/
transcripts
Get all Transcripts
curl --request GET \
  --url https://api.affinity.co/v2/transcripts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1,
      "note": {
        "id": 742,
        "type": "ai-notetaker",
        "content": {
          "html": "<p> Sarah reviews the company's ARR growth trajectory with Alex. The team discusses expansion revenue drivers and the path to Series B. </p>"
        },
        "creator": {
          "id": 8,
          "firstName": "Sarah",
          "lastName": "Park",
          "primaryEmailAddress": "sarah.park@horizontech.com",
          "type": "internal"
        },
        "mentions": [],
        "transcriptId": 1,
        "createdAt": "2023-01-01T00:00:20Z",
        "updatedAt": "2023-01-21T00:01:00Z"
      },
      "languageCode": "en",
      "createdAt": "2023-01-01T00:00:23Z"
    },
    {
      "id": 2,
      "note": {
        "id": 844,
        "type": "ai-notetaker",
        "content": {
          "html": "<p> Daniel and the founder discuss due diligence findings from the technical review. The team aligns on next steps before the term sheet is finalized. </p>"
        },
        "creator": {
          "id": 10,
          "firstName": "Daniel",
          "lastName": "Kim",
          "primaryEmailAddress": "d.kim@northpointvc.com",
          "type": "internal"
        },
        "mentions": [],
        "transcriptId": 2,
        "createdAt": "2023-02-01T00:00:00Z",
        "updatedAt": "2023-02-21T00:00:00Z"
      },
      "languageCode": "en",
      "createdAt": "2023-02-01T00:00:35Z"
    }
  ],
  "pagination": {
    "prevUrl": "https://api.affinity.co/v2/transcripts?cursor=ICAgICAgYmVmb3JlOjo6Nw",
    "nextUrl": "https://api.affinity.co/v2/transcripts?cursor=ICAgICAgIGFmdGVyOjo6NA"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.affinity.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

totalCount
boolean
default:false

Include total count of the collection in the pagination response

cursor
string

Cursor for the next or previous page

limit
integer<int32>
default:20

Number of items to include in the page

Required range: 0 <= x <= 100
filter
string

Filter options

Response

OK

transcripts.TranscriptPaged model

data
transcripts.BaseTranscript · object[]
required

A page of Transcript results

Maximum array length: 100
pagination
PaginationWithTotalCount · object
required