Get all fills globally
curl --request POST \
--url 'https://api.hypedexer.com/info#allFills' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "allFills",
"coin": "ETH",
"limit": 100
}
'import requests
url = "https://api.hypedexer.com/info#allFills"
payload = {
"type": "allFills",
"coin": "ETH",
"limit": 100
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({type: 'allFills', coin: 'ETH', limit: 100})
};
fetch('https://api.hypedexer.com/info#allFills', 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.hypedexer.com/info#allFills",
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([
'type' => 'allFills',
'coin' => 'ETH',
'limit' => 100
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.hypedexer.com/info#allFills"
payload := strings.NewReader("{\n \"type\": \"allFills\",\n \"coin\": \"ETH\",\n \"limit\": 100\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.hypedexer.com/info#allFills")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"type\": \"allFills\",\n \"coin\": \"ETH\",\n \"limit\": 100\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/info#allFills")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"type\": \"allFills\",\n \"coin\": \"ETH\",\n \"limit\": 100\n}"
response = http.request(request)
puts response.read_body{
"result": [
{
"address": "0xabc123...",
"fill": {
"coin": "BTC",
"px": "65000.5",
"sz": "0.1",
"side": "A",
"time": 1700000050000,
"startPosition": "0.0",
"dir": "Open Long",
"closedPnl": "0.0",
"hash": "0x...",
"oid": 12345,
"crossed": true,
"fee": "1.625",
"tid": 67890,
"feeToken": "USDC"
}
}
]
}{
"error": "Invalid API key"
}Fills
Get all fills globally
Returns all fills across all users from the node_fills fullnode volumes. Optionally filter by coin and time range.
POST
/
info#allFills
Get all fills globally
curl --request POST \
--url 'https://api.hypedexer.com/info#allFills' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "allFills",
"coin": "ETH",
"limit": 100
}
'import requests
url = "https://api.hypedexer.com/info#allFills"
payload = {
"type": "allFills",
"coin": "ETH",
"limit": 100
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({type: 'allFills', coin: 'ETH', limit: 100})
};
fetch('https://api.hypedexer.com/info#allFills', 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.hypedexer.com/info#allFills",
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([
'type' => 'allFills',
'coin' => 'ETH',
'limit' => 100
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.hypedexer.com/info#allFills"
payload := strings.NewReader("{\n \"type\": \"allFills\",\n \"coin\": \"ETH\",\n \"limit\": 100\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.hypedexer.com/info#allFills")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"type\": \"allFills\",\n \"coin\": \"ETH\",\n \"limit\": 100\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hypedexer.com/info#allFills")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"type\": \"allFills\",\n \"coin\": \"ETH\",\n \"limit\": 100\n}"
response = http.request(request)
puts response.read_body{
"result": [
{
"address": "0xabc123...",
"fill": {
"coin": "BTC",
"px": "65000.5",
"sz": "0.1",
"side": "A",
"time": 1700000050000,
"startPosition": "0.0",
"dir": "Open Long",
"closedPnl": "0.0",
"hash": "0x...",
"oid": 12345,
"crossed": true,
"fee": "1.625",
"tid": 67890,
"feeToken": "USDC"
}
}
]
}{
"error": "Invalid API key"
}Authorizations
Optional. API key passed via Authorization: Bearer <key>. Required only when API_KEY is configured on the server.
Body
application/json
Response
List of fills with associated address
Show child attributes
Show child attributes
⌘I