get_earnings_calendar

Pack: finnhub · Endpoint: https://gateway.pipeworx.io/finnhub/mcp

Get upcoming and recent earnings reports across the market. Optionally filter by date range. Example: get_earnings_calendar({ from: “2024-01-01”, to: “2024-03-31”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
fromstringnoStart date in YYYY-MM-DD format (optional)
tostringnoEnd date in YYYY-MM-DD format (optional)
_apiKeystringyesFinnhub API key

Example call

Arguments

{
  "from": "2024-01-01",
  "to": "2024-03-31",
  "_apiKey": "your-finnhub-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/finnhub/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_earnings_calendar","arguments":{"from":"2024-01-01","to":"2024-03-31","_apiKey":"your-finnhub-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_earnings_calendar', {
  "from": "2024-01-01",
  "to": "2024-03-31",
  "_apiKey": "your-finnhub-api-key"
});

More examples

{
  "_apiKey": "your-finnhub-api-key"
}

Response shape

Always returns: count, earnings

FieldTypeDescription
countintegerTotal number of earnings reports
earningsarrayList of earnings reports (max 50)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Total number of earnings reports"
    },
    "earnings": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "symbol": {
            "type": "string",
            "description": "Stock ticker symbol"
          },
          "date": {
            "type": "string",
            "description": "Earnings report date (YYYY-MM-DD)"
          },
          "quarter": {
            "type": "integer",
            "description": "Fiscal quarter"
          },
          "year": {
            "type": "integer",
            "description": "Fiscal year"
          },
          "eps_estimate": {
            "type": [
              "number",
              "null"
            ],
            "description": "Estimated earnings per share"
          },
          "eps_actual": {
            "type": [
              "number",
              "null"
            ],
            "description": "Actual earnings per share"
          },
          "revenue_estimate": {
            "type": [
              "number",
              "null"
            ],
            "description": "Estimated revenue"
          },
          "revenue_actual": {
            "type": [
              "number",
              "null"
            ],
            "description": "Actual revenue"
          },
          "hour": {
            "type": "string",
            "description": "Earnings announcement time"
          }
        },
        "required": [
          "symbol",
          "date",
          "quarter",
          "year",
          "eps_estimate",
          "eps_actual",
          "revenue_estimate",
          "revenue_actual",
          "hour"
        ]
      },
      "description": "List of earnings reports (max 50)"
    }
  },
  "required": [
    "count",
    "earnings"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "finnhub": {
      "url": "https://gateway.pipeworx.io/finnhub/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026