curl --request GET \
--url https://laso.finance/order-intl-cardimport requests
url = "https://laso.finance/order-intl-card"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://laso.finance/order-intl-card', 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/order-intl-card",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/order-intl-card"
req, _ := http.NewRequest("GET", url, nil)
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/order-intl-card")
.asString();require 'uri'
require 'net/http'
url = URI("https://laso.finance/order-intl-card")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"auth": {
"id_token": "<string>",
"refresh_token": "<string>",
"expires_in": "<string>"
},
"callable_base_url": "<string>",
"user_id": "<string>",
"intl_card_order": {
"on_card_usd_amount": 123,
"charged_usd_amount": 123,
"status": "queued",
"timestamp": 123
},
"message": "<string>"
}{
"error": "Amount must be at least $100. Received: $50"
}{}{
"error": "Account is frozen",
"frozen_message": "Your account is frozen pending a compliance review. Contact support@laso.finance."
}{
"error": "Failed to order international card. Please contact support."
}Order an international prepaid card
Order an international non-reloadable prepaid card (USD). The order is queued and fulfilled by an admin — after fulfillment, card details become available via GET /get-card-data with card_type=Non-Reloadable International.
The x402 payment covers the on-card amount plus a 3.8% fee. Minimum $100, maximum $1,000 on-card amount. Submit a whole dollar amount.
Placing the order accepts the card issuer’s terms on behalf of the account holder: the Cardholder Agreement, the E-Communications Disclosure, and the Privacy Notice.
If you need to cancel a queued order before it is fulfilled, use POST /cancel-intl-order.
curl --request GET \
--url https://laso.finance/order-intl-cardimport requests
url = "https://laso.finance/order-intl-card"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://laso.finance/order-intl-card', 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/order-intl-card",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/order-intl-card"
req, _ := http.NewRequest("GET", url, nil)
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/order-intl-card")
.asString();require 'uri'
require 'net/http'
url = URI("https://laso.finance/order-intl-card")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"auth": {
"id_token": "<string>",
"refresh_token": "<string>",
"expires_in": "<string>"
},
"callable_base_url": "<string>",
"user_id": "<string>",
"intl_card_order": {
"on_card_usd_amount": 123,
"charged_usd_amount": 123,
"status": "queued",
"timestamp": 123
},
"message": "<string>"
}{
"error": "Amount must be at least $100. Received: $50"
}{}{
"error": "Account is frozen",
"frozen_message": "Your account is frozen pending a compliance review. Contact support@laso.finance."
}{
"error": "Failed to order international card. Please contact support."
}Query Parameters
On-card USD amount (min $100, max $1,000). Must be a whole dollar amount: the issuer only issues whole-dollar cards. The x402 payment is this amount plus a 3.8% fee.
100 <= x <= 1000Was this page helpful?