AlphaSense · JSON Structure

Alphasense Gensearch Conversation Structure

A GenSearch conversation envelope returned by the AlphaSense Agent API.

Type: object Properties: 5 Required: 2
Market IntelligenceFinancial ResearchSearchGenerative AIAI AgentsExpert CallsDocument IntelligenceEnterprise IntelligenceMCPGraphQL

GenSearchConversation is a JSON Structure definition published by AlphaSense, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id mode progress answer citations

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-gensearch-conversation-structure.json",
  "name": "GenSearchConversation",
  "description": "A GenSearch conversation envelope returned by the AlphaSense Agent API.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "mode": {
      "type": "string",
      "enum": ["auto", "fast", "thinkLonger", "deepResearch"]
    },
    "progress": { "type": "double" },
    "answer": { "type": "string" },
    "citations": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "documentId": { "type": "string" },
          "title": { "type": "string" },
          "sourceType": { "type": "string" },
          "url": { "type": "uri" },
          "snippet": { "type": "string" }
        },
        "required": ["documentId", "sourceType"]
      }
    }
  },
  "required": ["id", "progress"]
}