Chainlink TWAP feed registry
curl --request GET \
--url https://api.vatic.trading/api/v1/twap/feedsimport requests
url = "https://api.vatic.trading/api/v1/twap/feeds"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.vatic.trading/api/v1/twap/feeds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.vatic.trading/api/v1/twap/feeds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vatic.trading/api/v1/twap/feeds"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.vatic.trading/api/v1/twap/feeds")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vatic.trading/api/v1/twap/feeds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"beta": true,
"status": "testing",
"feeds": [
{
"asset": "btc",
"symbol": "btc/usd",
"windowSeconds": 30,
"feedId": "0x0002e6b03af5a87b65f4c5c0c8eaf6027e4156f467cd16bdcf8a5b4347f9c087",
"feedIdSource": "code"
}
],
"marketResolution": {
"5min": {
"twapWindowSeconds": 30,
"resolutionTimestamp": "market_end"
}
}
}Chainlink TWAP
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.
GET
/
api
/
v1
/
twap
/
feeds
Chainlink TWAP feed registry
curl --request GET \
--url https://api.vatic.trading/api/v1/twap/feedsimport requests
url = "https://api.vatic.trading/api/v1/twap/feeds"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.vatic.trading/api/v1/twap/feeds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.vatic.trading/api/v1/twap/feeds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vatic.trading/api/v1/twap/feeds"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.vatic.trading/api/v1/twap/feeds")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vatic.trading/api/v1/twap/feeds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"beta": true,
"status": "testing",
"feeds": [
{
"asset": "btc",
"symbol": "btc/usd",
"windowSeconds": 30,
"feedId": "0x0002e6b03af5a87b65f4c5c0c8eaf6027e4156f467cd16bdcf8a5b4347f9c087",
"feedIdSource": "code"
}
],
"marketResolution": {
"5min": {
"twapWindowSeconds": 30,
"resolutionTimestamp": "market_end"
}
}
}Lists the server-side Chainlink 30s/60s TWAP feed IDs and the Polymarket crypto up/down market-type mapping.
The existing target price endpoints remain the price-to-beat source. TWAP is the closing resolution reference.
Response
200 - application/json
TWAP feed registry
Was this page helpful?
⌘I