> ## 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.

# TWAP Feed Registry

> Beta endpoint listing Chainlink 30s/60s TWAP feed IDs and the Polymarket crypto up/down market-type mapping. Existing `/api/v1/targets/*` endpoints remain the price-to-beat API.

Lists the server-side Chainlink 30s/60s TWAP feed IDs and the Polymarket crypto up/down market-type mapping.

<Note>
  The existing target price endpoints remain the price-to-beat source. TWAP is the closing resolution reference.
</Note>


## OpenAPI

````yaml GET /api/v1/twap/feeds
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/twap/feeds:
    get:
      tags:
        - Chainlink TWAP
      summary: Chainlink TWAP feed registry
      description: >-
        Beta endpoint listing Chainlink 30s/60s TWAP feed IDs and the Polymarket
        crypto up/down market-type mapping. Existing `/api/v1/targets/*`
        endpoints remain the price-to-beat API.
      operationId: getTwapFeeds
      responses:
        '200':
          description: TWAP feed registry
          content:
            application/json:
              example:
                beta: true
                status: testing
                feeds:
                  - asset: btc
                    symbol: btc/usd
                    windowSeconds: 30
                    feedId: >-
                      0x0002e6b03af5a87b65f4c5c0c8eaf6027e4156f467cd16bdcf8a5b4347f9c087
                    feedIdSource: code
                marketResolution:
                  5min:
                    twapWindowSeconds: 30
                    resolutionTimestamp: market_end

````