All data sources

Polygon.io

API keypolygon

Polygon.io — equity quotes, aggregates, ticker reference, financials, splits, dividends, market holidays. QUOTES / BARS: getStockQuote, getAggregates, getDailyBar REFERENCE: searchTickers, getTickerDetails, getRelatedCompanies CORPORATE ACTIONS: getStockSplits, getDividends FINANCIALS / CALENDAR: getFinancials, getMarketHolidays

Provenance

PublisherPolygon.io

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (API key)

Methods (10)

  • getStockQuote

    read

    Previous close for a ticker.

    Required paramsticker
    Input schema
    {
      "type": "object",
      "properties": {
        "ticker": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "ticker"
      ]
    }
  • getAggregates

    read

    OHLCV aggregates over a date range.

    Required paramstickermultipliertimespanfromto
    Input schema
    {
      "type": "object",
      "properties": {
        "ticker": {
          "type": "string"
        },
        "multiplier": {
          "type": "number"
        },
        "timespan": {
          "type": "string"
        },
        "from": {
          "type": "string"
        },
        "to": {
          "type": "string"
        },
        "adjusted": {
          "type": "boolean"
        },
        "sort": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "ticker",
        "multiplier",
        "timespan",
        "from",
        "to"
      ]
    }
  • getDailyBar

    read

    OHLCV for a single trading day.

    Required paramstickerdate
    Input schema
    {
      "type": "object",
      "properties": {
        "ticker": {
          "type": "string"
        },
        "date": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "ticker",
        "date"
      ]
    }
  • searchTickers

    read

    Ticker search by name or symbol.

    Required paramsquery
    Input schema
    {
      "type": "object",
      "properties": {
        "query": {
          "type": "string"
        },
        "market": {
          "type": "string"
        },
        "active": {
          "type": "boolean"
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "query"
      ]
    }
  • getTickerDetails

    read

    Company detail for a ticker.

    Required paramsticker
    Input schema
    {
      "type": "object",
      "properties": {
        "ticker": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "ticker"
      ]
    }
  • getStockSplits

    read

    Split history for a ticker.

    Required paramsticker
    Input schema
    {
      "type": "object",
      "properties": {
        "ticker": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "ticker"
      ]
    }
  • getDividends

    read

    Dividend history for a ticker.

    Required paramsticker
    Input schema
    {
      "type": "object",
      "properties": {
        "ticker": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        }
      },
      "additionalProperties": false,
      "required": [
        "ticker"
      ]
    }
  • getMarketHolidays

    read

    Upcoming holidays / early closes.

    Input schema
    {
      "type": "object",
      "properties": {},
      "additionalProperties": false
    }
  • getRelatedCompanies

    read

    Related companies / peers.

    Required paramsticker
    Input schema
    {
      "type": "object",
      "properties": {
        "ticker": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "ticker"
      ]
    }
  • getFinancials

    read

    Standardized financial statements.

    Required paramsticker
    Input schema
    {
      "type": "object",
      "properties": {
        "ticker": {
          "type": "string"
        },
        "timeframe": {
          "type": "string"
        },
        "limit": {
          "type": "number"
        },
        "filing_date": {
          "type": "string"
        },
        "period_of_report_date": {
          "type": "string"
        }
      },
      "additionalProperties": false,
      "required": [
        "ticker"
      ]
    }