curl --request POST \
--url https://live.launcx.com/api/v3/disbursements \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--header 'x-api-key: <x-api-key>' \
--header 'x-signature: <x-signature>' \
--data '
{
"account_no": "<string>",
"amount": "<string>",
"bank_code": "<string>",
"client_wallet_id": "<string>",
"memo": "<string>",
"transfer_type": "<string>"
}
'import requests
url = "https://live.launcx.com/api/v3/disbursements"
payload = {
"account_no": "<string>",
"amount": "<string>",
"bank_code": "<string>",
"client_wallet_id": "<string>",
"memo": "<string>",
"transfer_type": "<string>"
}
headers = {
"x-api-key": "<x-api-key>",
"x-signature": "<x-signature>",
"Idempotency-Key": "<idempotency-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-api-key': '<x-api-key>',
'x-signature': '<x-signature>',
'Idempotency-Key': '<idempotency-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
account_no: '<string>',
amount: '<string>',
bank_code: '<string>',
client_wallet_id: '<string>',
memo: '<string>',
transfer_type: '<string>'
})
};
fetch('https://live.launcx.com/api/v3/disbursements', 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://live.launcx.com/api/v3/disbursements",
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([
'account_no' => '<string>',
'amount' => '<string>',
'bank_code' => '<string>',
'client_wallet_id' => '<string>',
'memo' => '<string>',
'transfer_type' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>",
"x-api-key: <x-api-key>",
"x-signature: <x-signature>"
],
]);
$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://live.launcx.com/api/v3/disbursements"
payload := strings.NewReader("{\n \"account_no\": \"<string>\",\n \"amount\": \"<string>\",\n \"bank_code\": \"<string>\",\n \"client_wallet_id\": \"<string>\",\n \"memo\": \"<string>\",\n \"transfer_type\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<x-api-key>")
req.Header.Add("x-signature", "<x-signature>")
req.Header.Add("Idempotency-Key", "<idempotency-key>")
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://live.launcx.com/api/v3/disbursements")
.header("x-api-key", "<x-api-key>")
.header("x-signature", "<x-signature>")
.header("Idempotency-Key", "<idempotency-key>")
.header("Content-Type", "application/json")
.body("{\n \"account_no\": \"<string>\",\n \"amount\": \"<string>\",\n \"bank_code\": \"<string>\",\n \"client_wallet_id\": \"<string>\",\n \"memo\": \"<string>\",\n \"transfer_type\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://live.launcx.com/api/v3/disbursements")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<x-api-key>'
request["x-signature"] = '<x-signature>'
request["Idempotency-Key"] = '<idempotency-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account_no\": \"<string>\",\n \"amount\": \"<string>\",\n \"bank_code\": \"<string>\",\n \"client_wallet_id\": \"<string>\",\n \"memo\": \"<string>\",\n \"transfer_type\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"account_holder_name": "<string>",
"account_no": "<string>",
"amount": 123,
"bank_code": "<string>",
"bank_name": "<string>",
"client_id": "<string>",
"currency": "<string>",
"failed_reason": "<string>",
"id": "<string>",
"idempotency_key": "<string>",
"memo": "<string>",
"net_amount": 123,
"platform_fee": 123,
"status": "<string>",
"wallet_id": "<string>"
}{
"account_holder_name": "<string>",
"account_no": "<string>",
"amount": 123,
"bank_code": "<string>",
"bank_name": "<string>",
"client_id": "<string>",
"currency": "<string>",
"failed_reason": "<string>",
"id": "<string>",
"idempotency_key": "<string>",
"memo": "<string>",
"net_amount": 123,
"platform_fee": 123,
"status": "<string>",
"wallet_id": "<string>"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}Create disbursement (B2B)
Atomically creates and submits a disbursement. Requires the Idempotency-Key HTTP header — replays return the original response without re-submitting. When the response is a replay, the Idempotent-Replayed: true response header is set; absence of the header means a fresh create. Requires a valid x-signature request signature — see Authentication. Status updates after this call (SUCCESS/FAILED) arrive via the configured payout webhook.
curl --request POST \
--url https://live.launcx.com/api/v3/disbursements \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--header 'x-api-key: <x-api-key>' \
--header 'x-signature: <x-signature>' \
--data '
{
"account_no": "<string>",
"amount": "<string>",
"bank_code": "<string>",
"client_wallet_id": "<string>",
"memo": "<string>",
"transfer_type": "<string>"
}
'import requests
url = "https://live.launcx.com/api/v3/disbursements"
payload = {
"account_no": "<string>",
"amount": "<string>",
"bank_code": "<string>",
"client_wallet_id": "<string>",
"memo": "<string>",
"transfer_type": "<string>"
}
headers = {
"x-api-key": "<x-api-key>",
"x-signature": "<x-signature>",
"Idempotency-Key": "<idempotency-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-api-key': '<x-api-key>',
'x-signature': '<x-signature>',
'Idempotency-Key': '<idempotency-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
account_no: '<string>',
amount: '<string>',
bank_code: '<string>',
client_wallet_id: '<string>',
memo: '<string>',
transfer_type: '<string>'
})
};
fetch('https://live.launcx.com/api/v3/disbursements', 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://live.launcx.com/api/v3/disbursements",
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([
'account_no' => '<string>',
'amount' => '<string>',
'bank_code' => '<string>',
'client_wallet_id' => '<string>',
'memo' => '<string>',
'transfer_type' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>",
"x-api-key: <x-api-key>",
"x-signature: <x-signature>"
],
]);
$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://live.launcx.com/api/v3/disbursements"
payload := strings.NewReader("{\n \"account_no\": \"<string>\",\n \"amount\": \"<string>\",\n \"bank_code\": \"<string>\",\n \"client_wallet_id\": \"<string>\",\n \"memo\": \"<string>\",\n \"transfer_type\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<x-api-key>")
req.Header.Add("x-signature", "<x-signature>")
req.Header.Add("Idempotency-Key", "<idempotency-key>")
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://live.launcx.com/api/v3/disbursements")
.header("x-api-key", "<x-api-key>")
.header("x-signature", "<x-signature>")
.header("Idempotency-Key", "<idempotency-key>")
.header("Content-Type", "application/json")
.body("{\n \"account_no\": \"<string>\",\n \"amount\": \"<string>\",\n \"bank_code\": \"<string>\",\n \"client_wallet_id\": \"<string>\",\n \"memo\": \"<string>\",\n \"transfer_type\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://live.launcx.com/api/v3/disbursements")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<x-api-key>'
request["x-signature"] = '<x-signature>'
request["Idempotency-Key"] = '<idempotency-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account_no\": \"<string>\",\n \"amount\": \"<string>\",\n \"bank_code\": \"<string>\",\n \"client_wallet_id\": \"<string>\",\n \"memo\": \"<string>\",\n \"transfer_type\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"account_holder_name": "<string>",
"account_no": "<string>",
"amount": 123,
"bank_code": "<string>",
"bank_name": "<string>",
"client_id": "<string>",
"currency": "<string>",
"failed_reason": "<string>",
"id": "<string>",
"idempotency_key": "<string>",
"memo": "<string>",
"net_amount": 123,
"platform_fee": 123,
"status": "<string>",
"wallet_id": "<string>"
}{
"account_holder_name": "<string>",
"account_no": "<string>",
"amount": 123,
"bank_code": "<string>",
"bank_name": "<string>",
"client_id": "<string>",
"currency": "<string>",
"failed_reason": "<string>",
"id": "<string>",
"idempotency_key": "<string>",
"memo": "<string>",
"net_amount": 123,
"platform_fee": 123,
"status": "<string>",
"wallet_id": "<string>"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}{
"error": "invalid email or password"
}Headers
Client API Key
HMAC-SHA256 request signature, REQUIRED on this endpoint. Format: t=,v1= where v1 = lowercase hex of HMAC-SHA256(".", signing secret). When present, x-timestamp is ignored (the t inside the signature is window-checked instead). Test your implementation with POST /api/v3/debug/signature-check.
Unix timestamp in milliseconds. Ignored when x-signature is present.
Unique key per client for safe retries (max 64 chars)
Body
Disbursement create request
Response
Idempotent replay of an earlier successful create