Skip to main content
GET
/
insight
/
{rec_id}
Get Detailed Record
curl --request GET \
  --url https://api.example.com/insight/{rec_id}/ \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "status": "<string>",
  "name": "<string>",
  "size_mb": 123,
  "is_public": true,
  "last_version": 123,
  "file_extension": "<string>",
  "setup": {
    "language": "<string>",
    "report_language": "<string>",
    "participant_count": 123,
    "respondent_count": 123,
    "respondent_known_names": [
      "<string>"
    ],
    "goals": "<string>",
    "notes": "<string>",
    "guide": "<string>",
    "custom_prompt": "<string>",
    "is_with_transcript": false,
    "is_with_insight_report": false
  },
  "transcripts": [
    {
      "id": 123,
      "is_respondent": true,
      "known_name": "<string>",
      "speaker": "<string>",
      "start_in_ms": 123,
      "end_in_ms": 123,
      "text": "<string>"
    }
  ],
  "profile": {
    "general_info": {
      "professional_experience": "<string>",
      "current_role": "<string>",
      "description": "<string>",
      "name": "<string>",
      "age": 123
    },
    "goals": [
      {
        "title": "<string>",
        "text": "<string>",
        "dialog_examples": [],
        "score": 123
      }
    ],
    "motivations": [
      {
        "title": "<string>",
        "text": "<string>",
        "dialog_examples": [],
        "score": 123
      }
    ],
    "pain_points": [
      {
        "title": "<string>",
        "text": "<string>",
        "dialog_examples": [],
        "score": 123
      }
    ],
    "emotions": [
      {
        "title": "<string>",
        "text": "<string>",
        "dialog_examples": [],
        "score": 123
      }
    ],
    "tools": [
      {
        "title": "<string>",
        "text": "<string>",
        "dialog_examples": [],
        "score": 123
      }
    ]
  },
  "insights": {
    "key_insights": [
      {
        "title": "<string>",
        "text": "<string>",
        "dialog_examples": [],
        "score": 123
      }
    ],
    "barriers": [
      {
        "title": "<string>",
        "text": "<string>",
        "dialog_examples": [],
        "score": 123
      }
    ],
    "engagements": [
      {
        "title": "<string>",
        "text": "<string>",
        "dialog_examples": [],
        "score": 123
      }
    ],
    "expectations": [
      {
        "title": "<string>",
        "text": "<string>",
        "dialog_examples": [],
        "score": 123
      }
    ]
  },
  "jtbd": {
    "identified_jobs": [
      {
        "title": "<string>",
        "examples": [
          {
            "id": 123,
            "text": "<string>"
          }
        ],
        "job_story_when": "<string>",
        "job_story_want": "<string>",
        "job_story_so_that": "<string>",
        "dominant_solution": "<string>",
        "problems_with_current_solution": "<string>",
        "emotions": "<string>",
        "sub_jobs": []
      }
    ],
    "solutions": [
      {
        "title": "<string>",
        "solutions": [
          {
            "prefix_text": "<string>",
            "text": "<string>"
          }
        ]
      }
    ],
    "outcomes": [
      {
        "title": "<string>",
        "solutions": [
          {
            "prefix_text": "<string>",
            "text": "<string>"
          }
        ]
      }
    ]
  },
  "recommendations": {
    "actionable_steps": [
      {
        "title": "<string>",
        "solutions": [
          {
            "prefix_text": "<string>",
            "text": "<string>"
          }
        ]
      }
    ],
    "product_improvements": [
      {
        "title": "<string>",
        "solutions": [
          {
            "prefix_text": "<string>",
            "text": "<string>"
          }
        ]
      }
    ],
    "service_enhancements": [
      {
        "title": "<string>",
        "solutions": [
          {
            "prefix_text": "<string>",
            "text": "<string>"
          }
        ]
      }
    ]
  },
  "expected_tokens": {
    "price_with_transcript": 123,
    "price_with_report": 123
  },
  "qa_report": "<string>",
  "persona_report": "<string>",
  "custom_report": "<string>",
  "jtbd_markdown_report": "<string>",
  "available_versions": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

rec_id
string<uuid>
required

Query Parameters

version
integer | null

Response

Successful Response

id
string
required
status
string
required
name
string
required
size_mb
number
required
is_public
boolean
required
last_version
integer
required
file_extension
string
required
setup
DefinedContext · object
required
transcripts
Transcript · object[]
required
profile
Profile · object
required
insights
Insights · object
required
jtbd
JTBD · object
required
recommendations
Recommendations · object
required
expected_tokens
Costs · object
qa_report
string | null
persona_report
string | null
custom_report
string | null
jtbd_markdown_report
string | null
available_versions
Available Versions · object