Get a batch
curl --request GET \
--url https://api.liddie.io/api/v1/mass-payouts/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.liddie.io/api/v1/mass-payouts/{id}"
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/{id}', 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/{id}",
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/{id}"
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/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.liddie.io/api/v1/mass-payouts/{id}")
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
Get a batch
Fetch a single Liddie mass-payout batch by id, including every per-recipient leg, the payout status of each leg, and the running batch totals.
GET
/
api
/
v1
/
mass-payouts
/
{id}
Get a batch
curl --request GET \
--url https://api.liddie.io/api/v1/mass-payouts/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.liddie.io/api/v1/mass-payouts/{id}"
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/{id}', 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/{id}",
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/{id}"
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/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.liddie.io/api/v1/mass-payouts/{id}")
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_bodyFetch a single mass-payout batch, including its per-recipient legs.
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.cURL
curl https://api.liddie.io/api/v1/mass-payouts/<id> \
-H "Authorization: Bearer <dashboard-jwt>"
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: 120/min.
Parameters
string
required
The batch id to fetch (from List payout batches).
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/<id>', {
headers: { Authorization: 'Bearer <dashboard-jwt>' },
})
const { ok, data } = await res.json()
The per-recipient legs generated by a batch also surface in the withdrawals history when queried with
filter=all (GET /api/v1/withdrawals?filter=all). The default filter=manual returns only your own withdrawal rows and hides mass-payout legs.Errors
| Status | Body | Why |
|---|---|---|
| 401 | {"error":"Invalid or expired token"} | Called with an API key or a missing/expired dashboard JWT. |
See also
- List payout batches: find the batch id to fetch.
- Cancel a batch: stop a queued batch; pending legs are refunded.
- Queue a batch: submit a new mass-payout batch.