Get News
curl --request GET \
--url https://synthesis.trade/api/v1/newsimport requests
url = "https://synthesis.trade/api/v1/news"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://synthesis.trade/api/v1/news', 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://synthesis.trade/api/v1/news",
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://synthesis.trade/api/v1/news"
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://synthesis.trade/api/v1/news")
.asString();require 'uri'
require 'net/http'
url = URI("https://synthesis.trade/api/v1/news")
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{
"success": true,
"response": [
{
"news": {
"news_id": "c3d4e5f6-a7b8-9012-cdef-0123456789ab",
"title": "Federal Reserve announces rate decision",
"source": "Reuters",
"description": "Officials held rates steady while signaling ongoing inflation monitoring.",
"url": "https://example.com/news/fed-rate-decision",
"matches": [
{
"venue": "polymarket",
"event_id": "12345",
"score": 0.92
}
],
"published_at": "2026-01-01T00:00:00",
"created_at": "2026-01-01T00:00:00"
},
"events": [
{
"venue": "polymarket",
"score": 0.92,
"event": {
"event_id": 12345,
"title": "Will the Fed cut rates by June?",
"slug": "will-the-fed-cut-rates-by-june",
"description": "This market resolves to Yes if the Federal Reserve cuts rates before July 2026.",
"image": "https://example.com/fed-rates.png",
"tags": [
"economics",
"fed"
],
"labels": [
"macro",
"rates"
],
"neg_risk": false,
"active": true,
"liquidity": "2000000",
"volume": "8000000",
"volume24hr": "400000",
"volume1wk": "1500000",
"volume1mo": "3500000",
"volume1yr": "8000000",
"live": {
"live": false,
"ended": false
},
"created_at": "2026-01-01T00:00:00",
"updated_at": "2026-01-01T00:00:00",
"ends_at": "2026-06-30T23:59:59"
}
}
]
}
]
}News
Get News
Get recent news with matched prediction market context.
Get News
curl --request GET \
--url https://synthesis.trade/api/v1/newsimport requests
url = "https://synthesis.trade/api/v1/news"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://synthesis.trade/api/v1/news', 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://synthesis.trade/api/v1/news",
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://synthesis.trade/api/v1/news"
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://synthesis.trade/api/v1/news")
.asString();require 'uri'
require 'net/http'
url = URI("https://synthesis.trade/api/v1/news")
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{
"success": true,
"response": [
{
"news": {
"news_id": "c3d4e5f6-a7b8-9012-cdef-0123456789ab",
"title": "Federal Reserve announces rate decision",
"source": "Reuters",
"description": "Officials held rates steady while signaling ongoing inflation monitoring.",
"url": "https://example.com/news/fed-rate-decision",
"matches": [
{
"venue": "polymarket",
"event_id": "12345",
"score": 0.92
}
],
"published_at": "2026-01-01T00:00:00",
"created_at": "2026-01-01T00:00:00"
},
"events": [
{
"venue": "polymarket",
"score": 0.92,
"event": {
"event_id": 12345,
"title": "Will the Fed cut rates by June?",
"slug": "will-the-fed-cut-rates-by-june",
"description": "This market resolves to Yes if the Federal Reserve cuts rates before July 2026.",
"image": "https://example.com/fed-rates.png",
"tags": [
"economics",
"fed"
],
"labels": [
"macro",
"rates"
],
"neg_risk": false,
"active": true,
"liquidity": "2000000",
"volume": "8000000",
"volume24hr": "400000",
"volume1wk": "1500000",
"volume1mo": "3500000",
"volume1yr": "8000000",
"live": {
"live": false,
"ended": false
},
"created_at": "2026-01-01T00:00:00",
"updated_at": "2026-01-01T00:00:00",
"ends_at": "2026-06-30T23:59:59"
}
}
]
}
]
}⌘I