Skip to main content
GET
/
v1
/
analyses
/
{id}
Fetch an analysis
curl --request GET \
  --url http://localhost:3000/v1/analyses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "recording_url": "<string>",
  "transcript_url": "<string>",
  "callback_url": "<string>",
  "options": {},
  "metadata": {},
  "transcript": {
    "text": "<string>",
    "utterances": [
      {
        "start": 123,
        "end": 123,
        "speaker": "<string>",
        "transcript": "<string>",
        "text": "<string>"
      }
    ],
    "words": [
      {}
    ],
    "word_count": 1,
    "duration_seconds": 1,
    "overall_sentiment": "<string>",
    "sentiment_score": 123
  },
  "analysis": {
    "prospect_name": "<string>",
    "recording_title": "<string>",
    "double_down": "<string>",
    "ai_summary": "<string>",
    "ai_summary_v5": "<string>",
    "questions_asked": 1,
    "filler_word_count": 1,
    "words_per_minute": 1,
    "overall_score": 50,
    "clarity_score": 50,
    "influence_score": 50,
    "objection_score": 50,
    "discovery_score": 50,
    "delivery_score": 50,
    "close_score": 50,
    "feedback_v5": {
      "clarity": {
        "positive": "<string>",
        "negative": "<string>"
      },
      "influence": {
        "positive": "<string>",
        "negative": "<string>"
      },
      "objection": {
        "positive": "<string>",
        "negative": "<string>"
      },
      "discovery": {
        "positive": "<string>",
        "negative": "<string>"
      },
      "delivery": {
        "positive": "<string>",
        "negative": "<string>"
      },
      "close": {
        "positive": "<string>",
        "negative": "<string>"
      }
    },
    "action_plan_v5": {
      "double_down_implementation": "<string>",
      "general_communication_improvement": "<string>",
      "quoted_principle": "<string>"
    },
    "organization_prompt_summary": "<string>",
    "organization_feedback": "<string>",
    "master_prompt_id": "<string>",
    "master_prompt_version": "<string>",
    "persona_snapshot": {},
    "synthesis_snapshot": {}
  },
  "error": {
    "code": "<string>",
    "message": "<string>",
    "details": {}
  },
  "duration_seconds": 123,
  "cost_usd_cents": 123,
  "created_at": "<string>",
  "started_at": "<string>",
  "completed_at": "<string>",
  "partner_org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "partner_rep_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "parent_session_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Response

200 - application/json

Default Response

id
string<uuid>
required
status
enum<string>
required
Available options:
queued,
processing,
completed,
failed,
cancelled
recording_url
string | null
required
transcript_url
string | null
required
callback_url
string | null
required
options
object
required
metadata
object
required
transcript
object
required
analysis
object
required
error
object
required
duration_seconds
integer | null
required
cost_usd_cents
required
created_at
string
required
started_at
string | null
required
completed_at
string | null
required
partner_org_id
string<uuid> | null
required
partner_rep_id
string<uuid> | null
required
parent_session_id
string<uuid> | null
required