AlphaSense · JSON Structure

Alphasense Watchlist Structure

A user-owned watchlist of companies, tickers, and saved queries.

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

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

Properties

id name items

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-watchlist-structure.json",
  "name": "Watchlist",
  "description": "A user-owned watchlist of companies, tickers, and saved queries.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "enum": ["company", "ticker", "query"]
          },
          "value": { "type": "string" }
        },
        "required": ["type", "value"]
      }
    }
  },
  "required": ["id", "name", "items"]
}