AlphaSense · Schema

Broker

A research firm / broker whose published research is indexed in AlphaSense (1,500+ partners).

Market IntelligenceFinancial ResearchSearchGenerative AIAI AgentsExpert CallsDocument IntelligenceEnterprise IntelligenceMCPGraphQL

Properties

Name Type Description
id string
name string
country string
coverage array
View JSON Schema on GitHub

JSON Schema

alphasense-broker-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-broker-schema.json",
  "title": "Broker",
  "description": "A research firm / broker whose published research is indexed in AlphaSense (1,500+ partners).",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "country": { "type": "string" },
    "coverage": {
      "type": "array",
      "items": { "type": "string" }
    }
  },
  "required": ["id", "name"]
}