> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vatic.trading/llms.txt
> Use this file to discover all available pages before exploring further.

# Binance Range

> Fetches OHLCV open prices from Binance Futures for a time range. Only supports Binance-sourced intervals: `1hour`, `daily`. Max range: 7 days. Max points: 10,000.



## OpenAPI

````yaml GET /api/v1/history/binance/range
openapi: 3.1.0
info:
  title: Vatic API
  version: 1.0.0
  description: >-
    Polymarket price targets, Hyperliquid prediction market data, market
    timestamps, fee calculators, and order management for systematic prediction
    market trading.
servers:
  - url: https://api.vatic.trading
    description: Production
security: []
paths:
  /api/v1/history/binance/range:
    get:
      tags:
        - History & Timeseries
      summary: Binance price history over a range
      description: >-
        Fetches OHLCV open prices from Binance Futures for a time range. Only
        supports Binance-sourced intervals: `1hour`, `daily`. Max range: 7 days.
        Max points: 10,000.
      operationId: getHistoryBinanceRange
      parameters:
        - name: asset
          in: query
          required: true
          schema:
            type: string
            enum:
              - btc
              - eth
              - sol
              - xrp
              - hype
              - doge
              - bnb
        - name: type
          in: query
          required: true
          schema:
            type: string
            enum:
              - 1hour
              - daily
        - name: start
          in: query
          required: true
          schema:
            type: integer
        - name: end
          in: query
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: Binance price history
        '400':
          description: Validation error

````