Debriefer

Retrieve an analysis

GET
/api/v1/analyses/{id}

Path Parameters

id*string

Response Body

application/json

curl -X GET "https://loading/api/v1/analyses/anl_1234567890abcdef"
{
  "id": "string",
  "run_id": "string",
  "organization_id": "string",
  "test_mode": true,
  "status": "pending",
  "results": {
    "summary": {
      "content": "string",
      "word_count": 0
    },
    "themes": {
      "items": [
        {
          "label": "string",
          "salience": 0,
          "evidence_count": 0
        }
      ]
    },
    "sentiment": {
      "overall": "positive",
      "by_question": [
        {
          "question_key": "string",
          "sentiment": "positive"
        }
      ]
    }
  },
  "model": "string",
  "created_at": "string",
  "updated_at": "string",
  "object": "analysis"
}
Empty