# Gapup Earnings Transcript Signals

> Gapup Earnings Transcript Signals is a paid API for AI agents from mcp.gapup.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Analyzes an earnings call transcript for a given company and fiscal quarter, extracting key signals and insights from the text.

## Facts

- Endpoint: POST https://mcp.gapup.io/api/v1/call/earnings_transcript_signals
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gapup-earnings-transcript-signals-0fa6e4d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gXP-EZnRslRVTWZ2CJJbm

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gapup-earnings-transcript-signals-0fa6e4d6 -d '<json body>'
```

Example prompt: Can you analyze Tesla's Q1-2025 earnings transcript and pull out the key signals — things like management tone, guidance changes, and any notable risks or opportunities mentioned?

## When to prefer this

Use this endpoint when you need structured signal extraction from earnings call transcripts for a specific company and fiscal quarter, especially when you want automated NLP-driven analysis rather than raw transcript retrieval. Particularly useful for equity research workflows, investment signal generation, and financial due diligence on public companies including European firms via ADR mapping.

## Known failure modes

- Transcript not found for the specified company/quarter combination — falls back to mock transcript data
- Company ticker not recognized or not mappable to EDGAR record — returns error or uses fallback
- Transcript text too short (under 100 characters) when provided directly — validation error
- Invalid quarter format (must match Q1-2026 pattern) — schema validation error
- Rate limiting or authentication failure if Bearer token is invalid or missing

## How this service works

REST gateway for the Gapup MCP catalogue — 271 AI tools accessible via standard HTTP. Authentication via Authorization: Bearer <api_key>. Native MCP transport available at /mcp.

## Output

Returns a JSON object containing extracted signals and analysis from the earnings call transcript, including key themes, sentiment indicators, management commentary insights, and other notable signals detected in the transcript text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lang": {
   "enum": [
    "en",
    "de",
    "fr",
    "es",
    "zh"
   ],
   "type": "string",
   "description": "Language hint for the transcript. Affects mock transcript language when fetch fails."
  },
  "async": {
   "type": "boolean",
   "description": "If true, returns a job_id immediately (<200ms) instead of waiting for the result. Poll the result with job_result(job_id). Use for slow tools to avoid client timeouts."
  },
  "quarter": {
   "type": "string",
   "pattern": "^Q[1-4]-\\d{4}$",
   "description": "Fiscal quarter in format Q1-2026. Defaults to the most recent past quarter."
  },
  "transcript_text": {
   "type": "string",
   "description": "If provided, skips all external fetches and analyses this text directly. Minimum 100 characters."
  },
  "company_or_ticker": {
   "type": "string",
   "description": "Company name or ticker symbol (e.g. 'Tesla', 'TSLA', 'SAP', 'SAP.DE', 'Sanofi', 'SNY'). European tickers (SAP.DE, BMW.DE) are mapped to their ADR equivalents for EDGAR lookup."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tool": "earnings_transcript_signals",
  "result": {},
  "source": "rest-api"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gapup-earnings-transcript-signals-0fa6e4d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.gapup.io](https://www.zero.xyz/host/mcp.gapup.io/llms.txt)
