EODHD Technical API

Technical analysis indicators

Operations 1

GET /technical/{ticker} Retrieve technical indicator data for a specified symbol. #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/eodhd-technical-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

eodhd-technical-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EODHD Financial Data Technical API
  description: Comprehensive API for retrieving financial data including stock prices, fundamentals, calendar events, news, and more from EOD Historical Data (eodhd.com)
  version: 2.0.0
  contact:
    name: EODHD Support
    url: https://eodhd.com
    email: supportlevel1@eodhistoricaldata.com
  termsOfService: https://eodhd.com/financial-apis/terms-conditions
  license:
    name: Proprietary
    url: https://eodhd.com/financial-apis/terms-conditions
servers:
- url: https://eodhd.com/api
  description: Primary API path
- url: https://eodhistoricaldata.com/api
  description: Alternative API path
security:
- EODHDQueryKey: []
tags:
- name: Technical
  description: Technical analysis indicators
paths:
  /technical/{ticker}:
    get:
      summary: Retrieve technical indicator data for a specified symbol.
      description: Fetches technical indicator data, such as moving averages and other analytics, based on specified parameters.
      operationId: GetTechnicalIndicatorData
      parameters:
      - name: ticker
        in: path
        required: true
        description: Symbol in the format {SYMBOL_NAME}.{EXCHANGE_ID}, e.g., AAPL.US for Apple Inc.
        schema:
          type: string
      - name: function
        in: query
        required: true
        description: The function to calculate the technical indicator (e.g., 'sma' for Simple Moving Average).
        schema:
          type: string
          enum:
          - sma
          - ema
          - wma
          - volatility
          - stochastic
          - rsi
          - stddev
          - stochrsi
          - slope
          - dmi
          - adx
          - macd
          - atr
          - cci
          - sar
          - beta
          - bbands
          - splitadjusted
          - avgvol
          - avgvolccy
      - name: period
        in: query
        required: false
        description: Number of data points used to calculate the indicator. Default is 50.
        schema:
          type: integer
          minimum: 2
          maximum: 100000
          default: 50
      - name: from
        in: query
        required: false
        description: Start date for data retrieval in 'YYYY-MM-DD' format.
        schema:
          type: string
          format: date
      - name: to
        in: query
        required: false
        description: End date for data retrieval in 'YYYY-MM-DD' format.
        schema:
          type: string
          format: date
      - name: order
        in: query
        required: false
        description: 'Sort order of dates: ''a'' for ascending, ''d'' for descending. Default is ascending.'
        schema:
          type: string
          enum:
          - a
          - d
          default: a
      - name: fmt
        in: query
        required: false
        description: Output format, either 'json' or 'csv'. Default is 'json'.
        schema:
          type: string
          enum:
          - json
          - csv
          default: json
      - name: splitadjusted_only
        in: query
        required: false
        description: For select functions, adjust data only for splits by setting to '1'. Default is '0'.
        schema:
          type: integer
          enum:
          - 0
          - 1
          default: 0
      - name: filter
        in: query
        required: false
        description: Retrieve only the last value by specifying 'last_ema' or 'last_volume' as the filter.
        schema:
          type: string
      responses:
        '200':
          description: Successful response with technical indicator data.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    date:
                      type: string
                      format: date
                      description: Date of the data point.
                    sma:
                      type: number
                      description: Simple Moving Average value (specific to the chosen function).
              example:
              - date: '2020-12-31'
                sma: 118.4358
              - date: '2020-12-30'
                sma: 118.1347
        '400':
          description: Invalid request parameters.
        '401':
          description: Unauthorized.
      tags:
      - Technical
components:
  securitySchemes:
    EODHDQueryKey:
      type: apiKey
      in: query
      name: api_token
      description: EODHD API key (stored as a secret in ChatGPT).