curl --request POST \
--url https://api.datadash.xyz/api/v1/signals/scores \
--header 'Content-Type: application/json' \
--data '
{
"orderBy": [
{
"direction": "desc",
"field": "score"
}
],
"page": {
"limit": 50,
"offset": 0
}
}
'import requests
url = "https://api.datadash.xyz/api/v1/signals/scores"
payload = {
"orderBy": [
{
"direction": "desc",
"field": "score"
}
],
"page": {
"limit": 50,
"offset": 0
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({orderBy: [{direction: 'desc', field: 'score'}], page: {limit: 50, offset: 0}})
};
fetch('https://api.datadash.xyz/api/v1/signals/scores', 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.datadash.xyz/api/v1/signals/scores",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'orderBy' => [
[
'direction' => 'desc',
'field' => 'score'
]
],
'page' => [
'limit' => 50,
'offset' => 0
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.datadash.xyz/api/v1/signals/scores"
payload := strings.NewReader("{\n \"orderBy\": [\n {\n \"direction\": \"desc\",\n \"field\": \"score\"\n }\n ],\n \"page\": {\n \"limit\": 50,\n \"offset\": 0\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.datadash.xyz/api/v1/signals/scores")
.header("Content-Type", "application/json")
.body("{\n \"orderBy\": [\n {\n \"direction\": \"desc\",\n \"field\": \"score\"\n }\n ],\n \"page\": {\n \"limit\": 50,\n \"offset\": 0\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.datadash.xyz/api/v1/signals/scores")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"orderBy\": [\n {\n \"direction\": \"desc\",\n \"field\": \"score\"\n }\n ],\n \"page\": {\n \"limit\": 50,\n \"offset\": 0\n }\n}"
response = http.request(request)
puts response.read_body[
{
"avgEntryPrice": 123,
"daysToResolution": 123,
"event": {
"active": true,
"archived": true,
"closed": true,
"description": "<string>",
"endDate": "2023-11-07T05:31:56Z",
"icon": "<string>",
"id": 123,
"image": "<string>",
"liquidity": 123,
"openInterest": 123,
"seriesId": 123,
"slug": "<string>",
"startDate": "2023-11-07T05:31:56Z",
"tagIds": [
123
],
"title": "<string>",
"topMarketGroupItemTitle": "<string>",
"topMarketOneDayPriceChange": 123,
"topMarketOneHourPriceChange": 123,
"topMarketOneMonthPriceChange": 123,
"topMarketOneWeekPriceChange": 123,
"topMarketOneYearPriceChange": 123,
"topMarketPrice": 123,
"topTokenName": "<string>",
"traders": 123,
"trades": 123,
"volume": 123,
"volume1mo": 123,
"volume1wk": 123,
"volume1yr": 123,
"volume24h": 123
},
"market": {
"active": true,
"archived": true,
"closed": true,
"description": "<string>",
"endDate": "2023-11-07T05:31:56Z",
"eventId": 123,
"eventSlug": "<string>",
"groupItemTitle": "<string>",
"icon": "<string>",
"id": 123,
"image": "<string>",
"liquidity": 123,
"openInterest": 123,
"outcomeNames": [
"<string>"
],
"outcomePrices": [
123
],
"question": "<string>",
"slug": "<string>",
"startDate": "2023-11-07T05:31:56Z",
"volume": 123,
"volume24h": 123
},
"pNow": 123,
"relSize": 123,
"score": 123,
"slipAbs": 123,
"tags": [
{
"id": 123,
"label": "<string>",
"numEvents": 123,
"numTraders": 123,
"slug": "<string>"
}
],
"token": {
"eventId": 123,
"eventSlug": "<string>",
"isYesToken": true,
"marketClosed": true,
"marketClosedTime": "2023-11-07T05:31:56Z",
"marketEndDate": "2023-11-07T05:31:56Z",
"marketGroupItemTitle": "<string>",
"marketIcon": "<string>",
"marketId": 123,
"marketLiquidity": 123,
"marketOneDayPriceChange": 123,
"marketOpenInterest": 123,
"marketQuestion": "<string>",
"marketSlug": "<string>",
"marketStartDate": "2023-11-07T05:31:56Z",
"marketTraders": 123,
"marketTrades": 123,
"marketVolume": 123,
"marketVolume24h": 123,
"positionId": 123,
"tagIds": [
123
],
"tokenId": "<string>",
"tokenName": "<string>",
"tokenPrice": 123
},
"totalBoughtShares": 123,
"tradeSize": 123,
"user": {
"bio": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"displayName": "<string>",
"pnl": 123,
"profileImageUrl": "<string>",
"pseudonym": "<string>",
"rank": 123,
"userId": "<string>",
"verifiedBadge": true,
"xUsername": "<string>"
}
}
]{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}Signal Score
Per-wallet, per-position insider signal scores for currently-held legs in active markets.
curl --request POST \
--url https://api.datadash.xyz/api/v1/signals/scores \
--header 'Content-Type: application/json' \
--data '
{
"orderBy": [
{
"direction": "desc",
"field": "score"
}
],
"page": {
"limit": 50,
"offset": 0
}
}
'import requests
url = "https://api.datadash.xyz/api/v1/signals/scores"
payload = {
"orderBy": [
{
"direction": "desc",
"field": "score"
}
],
"page": {
"limit": 50,
"offset": 0
}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({orderBy: [{direction: 'desc', field: 'score'}], page: {limit: 50, offset: 0}})
};
fetch('https://api.datadash.xyz/api/v1/signals/scores', 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.datadash.xyz/api/v1/signals/scores",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'orderBy' => [
[
'direction' => 'desc',
'field' => 'score'
]
],
'page' => [
'limit' => 50,
'offset' => 0
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.datadash.xyz/api/v1/signals/scores"
payload := strings.NewReader("{\n \"orderBy\": [\n {\n \"direction\": \"desc\",\n \"field\": \"score\"\n }\n ],\n \"page\": {\n \"limit\": 50,\n \"offset\": 0\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.datadash.xyz/api/v1/signals/scores")
.header("Content-Type", "application/json")
.body("{\n \"orderBy\": [\n {\n \"direction\": \"desc\",\n \"field\": \"score\"\n }\n ],\n \"page\": {\n \"limit\": 50,\n \"offset\": 0\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.datadash.xyz/api/v1/signals/scores")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"orderBy\": [\n {\n \"direction\": \"desc\",\n \"field\": \"score\"\n }\n ],\n \"page\": {\n \"limit\": 50,\n \"offset\": 0\n }\n}"
response = http.request(request)
puts response.read_body[
{
"avgEntryPrice": 123,
"daysToResolution": 123,
"event": {
"active": true,
"archived": true,
"closed": true,
"description": "<string>",
"endDate": "2023-11-07T05:31:56Z",
"icon": "<string>",
"id": 123,
"image": "<string>",
"liquidity": 123,
"openInterest": 123,
"seriesId": 123,
"slug": "<string>",
"startDate": "2023-11-07T05:31:56Z",
"tagIds": [
123
],
"title": "<string>",
"topMarketGroupItemTitle": "<string>",
"topMarketOneDayPriceChange": 123,
"topMarketOneHourPriceChange": 123,
"topMarketOneMonthPriceChange": 123,
"topMarketOneWeekPriceChange": 123,
"topMarketOneYearPriceChange": 123,
"topMarketPrice": 123,
"topTokenName": "<string>",
"traders": 123,
"trades": 123,
"volume": 123,
"volume1mo": 123,
"volume1wk": 123,
"volume1yr": 123,
"volume24h": 123
},
"market": {
"active": true,
"archived": true,
"closed": true,
"description": "<string>",
"endDate": "2023-11-07T05:31:56Z",
"eventId": 123,
"eventSlug": "<string>",
"groupItemTitle": "<string>",
"icon": "<string>",
"id": 123,
"image": "<string>",
"liquidity": 123,
"openInterest": 123,
"outcomeNames": [
"<string>"
],
"outcomePrices": [
123
],
"question": "<string>",
"slug": "<string>",
"startDate": "2023-11-07T05:31:56Z",
"volume": 123,
"volume24h": 123
},
"pNow": 123,
"relSize": 123,
"score": 123,
"slipAbs": 123,
"tags": [
{
"id": 123,
"label": "<string>",
"numEvents": 123,
"numTraders": 123,
"slug": "<string>"
}
],
"token": {
"eventId": 123,
"eventSlug": "<string>",
"isYesToken": true,
"marketClosed": true,
"marketClosedTime": "2023-11-07T05:31:56Z",
"marketEndDate": "2023-11-07T05:31:56Z",
"marketGroupItemTitle": "<string>",
"marketIcon": "<string>",
"marketId": 123,
"marketLiquidity": 123,
"marketOneDayPriceChange": 123,
"marketOpenInterest": 123,
"marketQuestion": "<string>",
"marketSlug": "<string>",
"marketStartDate": "2023-11-07T05:31:56Z",
"marketTraders": 123,
"marketTrades": 123,
"marketVolume": 123,
"marketVolume24h": 123,
"positionId": 123,
"tagIds": [
123
],
"tokenId": "<string>",
"tokenName": "<string>",
"tokenPrice": 123
},
"totalBoughtShares": 123,
"tradeSize": 123,
"user": {
"bio": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"displayName": "<string>",
"pnl": 123,
"profileImageUrl": "<string>",
"pseudonym": "<string>",
"rank": 123,
"userId": "<string>",
"verifiedBadge": true,
"xUsername": "<string>"
}
}
]{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}Body
Show child attributes
Show child attributes
Filters to apply, combined with AND. Use a group for OR.
1A single field condition. in/notIn take an array of values; matches/notMatches take one search term.
- Numeric
- ID
- Wallet address
- User Profile Lookup
- User Tag Profile Lookup
- Group
Show child attributes
Show child attributes
Sort keys in priority order; the first is the primary sort. Defaults to the table's configured ranking when omitted.
Show child attributes
Show child attributes
Free-text search over: Market (embedding + full-text relevance).
Response
List of Signal Score rows
Average entry price of the shares still held (p_in)
Days from now to market end (<0 = overdue)
Resolved Event row.
Show child attributes
Show child attributes
Resolved Market row.
Show child attributes
Show child attributes
Live token price for this position (p_now)
This bet vs the wallet's usual size (>1 = bigger than usual)
Final 0-100 insider score for this position
Signed price move since entry (p_now - p_in)
Show child attributes
Show child attributes
Resolved Token row.
Show child attributes
Show child attributes
All-time shares bought for this position
This position's peak USD conviction (max_unrealized_buy_cost)
Resolved User row.
Show child attributes
Show child attributes