The live tape
curl --request GET \
--url https://api.routeur.app/v1/insights/ticker \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.routeur.app/v1/insights/ticker"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.routeur.app/v1/insights/ticker', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.routeur.app/v1/insights/ticker"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": [
{
"kind": "move",
"venue": "<string>",
"market_id": "<string>",
"event_id": "<string>",
"title": "<string>",
"price_usd": "<string>",
"change_usd": "<string>",
"notional_usd": "<string>",
"side": "yes",
"other_venue": "<string>",
"other_price_usd": "<string>",
"strategy_id": "<string>",
"return_per_100_usd": "<string>"
}
],
"graph_run": 2
}{
"error": {
"code": "api_key_required",
"message": "Send an API key in the X-API-Key header or as a Bearer token."
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Signals
The live tape
A short mixed list for a scrolling tape, taking turns between tradeable moves, large fills in the last hour, gaps between venues on proven-equivalent markets, and open markets fitting the strongest strategy.
GET
/
v1
/
insights
/
ticker
The live tape
curl --request GET \
--url https://api.routeur.app/v1/insights/ticker \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.routeur.app/v1/insights/ticker"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.routeur.app/v1/insights/ticker', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.routeur.app/v1/insights/ticker"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": [
{
"kind": "move",
"venue": "<string>",
"market_id": "<string>",
"event_id": "<string>",
"title": "<string>",
"price_usd": "<string>",
"change_usd": "<string>",
"notional_usd": "<string>",
"side": "yes",
"other_venue": "<string>",
"other_price_usd": "<string>",
"strategy_id": "<string>",
"return_per_100_usd": "<string>"
}
],
"graph_run": 2
}{
"error": {
"code": "api_key_required",
"message": "Send an API key in the X-API-Key header or as a Bearer token."
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}