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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/eodhd-eod-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
openapi: 3.2.0
info:
title: EODHD End-Of-Day Historical Data Eod API
description: Access end-of-day historical OHLCV data for stocks, ETFs, funds, indices, and currencies across global exchanges. Returns daily, weekly, or monthly historical price and volume data with both raw and split/dividend-adjusted closing prices.
version: '1.0'
contact:
name: EODHD Support
url: https://eodhd.com/financial-apis/
license:
name: EODHD Terms of Service
url: https://eodhd.com/financial-apis/terms-conditions
servers:
- url: https://eodhd.com/api
description: EODHD production API
security:
- apiToken: []
tags:
- name: Eod
paths:
/eod/{symbol}:
get:
summary: Retrieve end-of-day historical data
description: Returns the end-of-day historical OHLCV time series for a given ticker symbol. The symbol must include the exchange suffix, for example AAPL.US or BMW.XETRA. One call per request regardless of date range.
operationId: getEodHistoricalData
parameters:
- name: symbol
in: path
required: true
description: Ticker symbol with exchange suffix, e.g. AAPL.US.
schema:
type: string
example: AAPL.US
- name: api_token
in: query
required: true
description: API token assigned to your EODHD account.
schema:
type: string
- name: fmt
in: query
required: false
description: Response format. Defaults to csv.
schema:
type: string
enum:
- json
- csv
default: csv
- name: period
in: query
required: false
description: Aggregation period. d=daily, w=weekly, m=monthly.
schema:
type: string
enum:
- d
- w
- m
default: d
- name: order
in: query
required: false
description: Sort order of returned rows. a=ascending, d=descending.
schema:
type: string
enum:
- a
- d
default: a
- name: from
in: query
required: false
description: Inclusive start date in YYYY-MM-DD format.
schema:
type: string
format: date
- name: to
in: query
required: false
description: Inclusive end date in YYYY-MM-DD format.
schema:
type: string
format: date
- name: filter
in: query
required: false
description: Return only a single field, e.g. last_close or last_volume.
schema:
type: string
responses:
'200':
description: Historical OHLCV time series for the requested symbol.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/EodBar'
text/csv:
schema:
type: string
'401':
description: Missing or invalid api_token.
'404':
description: Unknown symbol or exchange.
'429':
description: Rate limit exceeded.
tags:
- Eod
components:
schemas:
EodBar:
type: object
properties:
date:
type: string
format: date
description: Trading date for this bar.
open:
type: number
description: Opening price (raw, unadjusted).
high:
type: number
description: Intraday high (raw, unadjusted).
low:
type: number
description: Intraday low (raw, unadjusted).
close:
type: number
description: Closing price (raw, unadjusted).
adjusted_close:
type: number
description: Closing price adjusted for splits and dividends.
volume:
type: integer
description: Volume adjusted for splits.
securitySchemes:
apiToken:
type: apiKey
in: query
name: api_token