List payout batches
curl --request GET \
--url https://api.liddie.io/api/v1/mass-payouts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.liddie.io/api/v1/mass-payouts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.liddie.io/api/v1/mass-payouts', 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.liddie.io/api/v1/mass-payouts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.liddie.io/api/v1/mass-payouts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.liddie.io/api/v1/mass-payouts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.liddie.io/api/v1/mass-payouts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyMass payouts
List payout batches
List your Liddie mass-payout batches page by page, including item counts, totals, and status, to track every batch crypto payout you have queued.
GET
/
api
/
v1
/
mass-payouts
List payout batches
curl --request GET \
--url https://api.liddie.io/api/v1/mass-payouts \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.liddie.io/api/v1/mass-payouts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.liddie.io/api/v1/mass-payouts', 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.liddie.io/api/v1/mass-payouts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.liddie.io/api/v1/mass-payouts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.liddie.io/api/v1/mass-payouts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.liddie.io/api/v1/mass-payouts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyList the mass-payout batches you have queued, page by page.
Mass payouts are batch egress (outbound money movement) to up to 500 recipients per batch; every recipient address must be on your withdrawal whitelist.
The example shows an account with no batches yet.
cURL
curl "https://api.liddie.io/api/v1/mass-payouts?page=1&limit=20" \
-H "Authorization: Bearer <dashboard-jwt>"
200 OK
{ "ok": true, "data": { "items": [], "total": 0 } }
Every money value on this response is an exact decimal string, never a JSON number —
totalsByCurrency, feeByCurrency, and each leg’s amount, networkFee and
netToDestination. Parse them with a decimal library; parseFloat on an 18-decimal
asset loses precision. Each leg’s figures match the underlying withdrawal byte for byte.
Batches created before 2026-08-12 stored these as floats and are normalized to strings
on read, so the wire type is the same for every batch.Authorization
Dashboard-only (JWT) with themass-payouts:view team permission. API keys are not accepted — an API key gets 401 {"error":"Invalid or expired token"}. See the Authentication guide. Rate limit: 60/min.
Parameters
integer
Page number to return, starting at
1. Defaults to 1.integer
Batches per page, up to
100. Defaults to 20.Full request example
JavaScript
// Dashboard-session auth: send the dashboard JWT as a Bearer token.
const res = await fetch('https://api.liddie.io/api/v1/mass-payouts?page=1&limit=20', {
headers: { Authorization: 'Bearer <dashboard-jwt>' },
})
const { ok, data } = await res.json()
Response fields
| Field | Description |
|---|---|
ok | true on success. |
data.items | The batches for the requested page. |
data.total | Total number of batches across all pages, for pagination. |
Referred other merchants? Referral earnings are withdrawn through a separate family under
/api/v1/me/referrals: GET /summary, GET /withdrawals, and POST /withdrawals (+ MFA, permission referrals:manage). Same whitelist + MFA model as the other withdrawal and payout endpoints.Errors
| Status | Body | Why |
|---|---|---|
| 401 | {"error":"Invalid or expired token"} | Called with an API key or a missing/expired dashboard JWT — this endpoint is dashboard-only. |
See also
- Get a batch: drill into one batch and its per-recipient legs.
- Validate a batch (dry-run): check a batch before queuing it.
- Queue a batch: submit a new mass-payout batch.