List bank payout recipients (free)
curl --request GET \
--url https://laso.finance/bank-recipients \
--header 'Authorization: <api-key>'import requests
url = "https://laso.finance/bank-recipients"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://laso.finance/bank-recipients', 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://laso.finance/bank-recipients",
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: <api-key>"
],
]);
$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://laso.finance/bank-recipients"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://laso.finance/bank-recipients")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://laso.finance/bank-recipients")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"user_id": "<string>",
"recipients": [
{
"recipient_id": "<string>",
"name": "<string>",
"status": "<string>",
"address": {},
"destinations": [
{
"destination_id": "<string>",
"destination_type": "fiat_us",
"name": "<string>",
"nickname": "<string>",
"bank_name": "<string>",
"account_holder_name": "<string>",
"account_number_last4": "<string>",
"routing_number": "<string>",
"crypto_address": "<string>",
"network_id": "<string>"
}
]
}
]
}Banking
List bank payout recipients (free)
Lists the recipients registered on your banking profile and the destinations attached to each, so you can find the destination_id that GET /send-bank-payment pays out to. Free — only the payout itself is a paid action.
Bank account numbers are returned masked to their last four digits; routing numbers are returned in full. Create recipients and destinations with the createBankingRecipient and addBankingDestination callables, rename a destination’s nickname (the only editable field) with updateBankingDestination, and remove a recipient with deleteBankingRecipient (see the bank accounts guide).
Requires a Bearer token from /auth or /get-card.
GET
/
bank-recipients
List bank payout recipients (free)
curl --request GET \
--url https://laso.finance/bank-recipients \
--header 'Authorization: <api-key>'import requests
url = "https://laso.finance/bank-recipients"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://laso.finance/bank-recipients', 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://laso.finance/bank-recipients",
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: <api-key>"
],
]);
$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://laso.finance/bank-recipients"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://laso.finance/bank-recipients")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://laso.finance/bank-recipients")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"user_id": "<string>",
"recipients": [
{
"recipient_id": "<string>",
"name": "<string>",
"status": "<string>",
"address": {},
"destinations": [
{
"destination_id": "<string>",
"destination_type": "fiat_us",
"name": "<string>",
"nickname": "<string>",
"bank_name": "<string>",
"account_holder_name": "<string>",
"account_number_last4": "<string>",
"routing_number": "<string>",
"crypto_address": "<string>",
"network_id": "<string>"
}
]
}
]
}Was this page helpful?