Skip to main content
GET
https://api.nanoclip.ai
/
v1
/
projects
/
{project_id}
/
transcript
Get Transcript
curl --request GET \
  --url https://api.nanoclip.ai/v1/projects/{project_id}/transcript \
  --header 'Authorization: Bearer <token>'
{
  "project_id": "<string>",
  "status": "<string>",
  "analysis": "transcript",
  "language": "<string>",
  "error": "<string>",
  "agent_context": {},
  "text": "",
  "words": [
    {}
  ],
  "utterances": [
    {}
  ],
  "speakers": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

project_id
string
required

Response

Successful Response

project_id
string
required
status
string
required
analysis
string
default:transcript
Allowed value: "transcript"
language
string | null
error
string | null
agent_context
Agent Context · object
text
string
default:""
words
Words · object[]
utterances
Utterances · object[]
speakers
Speakers · object[]