$ man earnings-call-transcribe
/earnings-call-transcribe
PRICE / CALL
$0.03
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
edgefinanceCATEGORY
uncategorized
STATUS
● live
NAME
earnings-call-transcribe — transcribes a company earnings call from its publicly posted investor-relations webcast or replay audio url, then optionally turns that t…
SYNOPSIS
POST https://x402.agentutility.ai/earnings-call-transcribe
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Transcribes a company earnings call from its publicly posted investor-relations webcast or replay audio URL, then optionally turns that transcript into a structured summary. Send audio_url plus an optional ticker and a summarize flag; the endpoint runs the audio through Whisper v3 for a full transcript and, when summarize is true, produces prepared remarks, Q&A highlights, guidance changes, and key metrics via LLM. Returns transcript, transcript_chars, duration_seconds, detected language, and the summary object when requested. Use it as an earnings call transcription API, IR webcast transcriber, or earnings call summary generator for earnings-prep agents, investor relations teams, and automated post-call research.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| audio_url | string | Public URL of the earnings call audio/video. Duration capped at 4 hours. | required |
| ticker | string | Optional stock ticker for context, included in the summary prompt. | optional |
| summarize | boolean | If true, adds a structured LLM summary (prepared remarks, Q&A, guidance) after transcription. Default false. | optional |
| language | string | Optional ISO language code hint for Whisper. Omit to let Whisper auto-detect. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| transcript_chars | string | Character count of the full Whisper v3 transcript returned in the response. |
| duration_seconds | string | Length of the transcribed audio in seconds, as measured from the source file. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/earnings-call-transcribe \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the earnings-call-transcribe tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- edge-financeearnings-calltranscriptionwhisperinvestor-relationsq-and-aearnings-transcript
- methods
- POST
- cluster
- edgefinance
- price
- $0.03 USDC per call
ADJACENT — other endpoints in edgefinance
| endpoint | description | price |
|---|---|---|
| earnings-calendar | Finds a company's next earnings date and its recent earnings-related SEC filings. | $0.03 |
| earnings-calendar-api | Finds company earnings dates from SEC filings: 8-K Item 2.02, 10-Q, 10-K, NT filing signals, fiscal periods, and next-earnings cadence es… | $0.03 |
| earnings-transcript | Earnings call transcript generator. | $0.03 |
| fda-calendar | Tracks upcoming FDA Advisory Committee (AdComm) meetings, a catalyst calendar for biotech. | $0.03 |
| fda-calendar-api | Tracks FDA advisory committee meetings, monitoring upcoming and recent AdComm notices, docket ids, committee names, and meeting dates. | $0.03 |
| trademark-search | Looks up any US trademark by serial number or registration number via the federal public TSDR API. | $0.03 |
| uspto-trademark-search | Looks up the current status of a US trademark by serial number or registration number against the USPTO's own TSDR (Trademark Status and… | $0.03 |
| bls-occupational-stats | Pull wage, employment level, and growth data straight from the Bureau of Labor Statistics Public Data API by series ID, covering formats… | $0.02 |
SEE ALSO