EODHD Tick Data API

Historical and marketplace tick-level trade data

Operations 2

GET /mp/unicornbay/tickdata/ticks Retrieve marketplace tick data #
GET /ticks Retrieve historical tick data #

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-tick-data-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-tick-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: EODHD Financial Data Tick Data 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: Tick Data
  description: Historical and marketplace tick-level trade data
paths:
  /mp/unicornbay/tickdata/ticks:
    get:
      summary: Retrieve marketplace tick data
      description: Get tick-level data via the UnicornBay marketplace data provider. Returns granular trade-by-trade data for supported symbols.
      operationId: GetMarketplaceTickData
      parameters:
      - name: s
        in: query
        required: true
        description: Ticker symbol (e.g., 'AAPL' or 'AAPL.US').
        schema:
          type: string
      - name: from
        in: query
        required: false
        description: Start UNIX timestamp (UTC).
        schema:
          type: integer
          format: int64
      - name: to
        in: query
        required: false
        description: End UNIX timestamp (UTC).
        schema:
          type: integer
          format: int64
      - name: limit
        in: query
        required: false
        description: Maximum number of ticks to return.
        schema:
          type: integer
      - name: fmt
        in: query
        required: false
        description: Output format.
        schema:
          type: string
          enum:
          - json
          default: json
      responses:
        '200':
          description: Successfully retrieved tick data.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    timestamp:
                      type: integer
                      format: int64
                      description: Trade timestamp in milliseconds since epoch.
                    price:
                      type: number
                      description: Trade price.
                    volume:
                      type: integer
                      description: Number of shares traded.
                    exchange:
                      type: string
                      description: Exchange code where trade occurred.
                    conditions:
                      type: string
                      description: Trade condition codes.
        '400':
          description: Invalid request parameters.
        '401':
          description: Unauthorized. Invalid API token.
        '404':
          description: Tick data not found.
      tags:
      - Tick Data
  /ticks:
    get:
      summary: Retrieve historical tick data
      description: Get historical stock tick data for US equities using UNIX time for filtering. Limited to US exchanges.
      operationId: GetTickData
      parameters:
      - name: s
        in: query
        required: true
        description: Ticker symbol (e.g., 'AAPL' or 'AAPL.US' for US-listed stocks).
        schema:
          type: string
      - name: from
        in: query
        required: false
        description: Start UNIX timestamp (UTC) for filtering data.
        schema:
          type: integer
          format: int64
      - name: to
        in: query
        required: false
        description: End UNIX timestamp (UTC) for filtering data.
        schema:
          type: integer
          format: int64
      - name: limit
        in: query
        required: false
        description: Maximum number of ticks to return.
        schema:
          type: integer
      - name: fmt
        in: query
        required: false
        description: Output format (only 'json' supported)
        schema:
          type: string
          enum:
          - json
          default: json
      responses:
        '200':
          description: Successful response with tick data
          content:
            application/json:
              schema:
                type: object
                properties:
                  ex:
                    type: array
                    items:
                      type: string
                    description: List of exchanges where transactions took place.
                  mkt:
                    type: array
                    items:
                      type: string
                    description: Market where trade took place.
                  price:
                    type: array
                    items:
                      type: number
                    description: Price of the transaction.
                  seq:
                    type: array
                    items:
                      type: integer
                    description: Trade sequence number.
                  shares:
                    type: array
                    items:
                      type: integer
                    description: Number of shares in the transaction.
                  sl:
                    type: array
                    items:
                      type: string
                    description: Sales condition codes for the trades.
                  sub_mkt:
                    type: array
                    items:
                      type: string
                    description: Sub-market where trade took place.
                  ts:
                    type: array
                    items:
                      type: integer
                      format: int64
                    description: Timestamp of each transaction in milliseconds since epoch.
              examples:
                default:
                  summary: Tick data response example
                  value:
                    ex:
                    - Q
                    - Q
                    - Q
                    mkt:
                    - K
                    - K
                    - K
                    price:
                    - 179.35
                    - 179.35
                    - 179.35
                    seq:
                    - 64234
                    - 64238
                    - 64329
                    shares:
                    - 50
                    - 10
                    - 100
                    sl:
                    - '@ TI'
                    - '@ TI'
                    - '@ T'
                    sub_mkt:
                    - ''
                    - ''
                    - ''
                    ts:
                    - 1694419200008
                    - 1694419200008
                    - 1694419200008
        '400':
          description: Invalid request parameters.
        '401':
          description: Unauthorized. Invalid API token.
        '404':
          description: Ticker data not found for the specified query.
      tags:
      - Tick Data
components:
  securitySchemes:
    EODHDQueryKey:
      type: apiKey
      in: query
      name: api_token
      description: EODHD API key (stored as a secret in ChatGPT).