Load a reloadable card balance with USDC
Load a reloadable card balance with USDC. Pay from either chain: the card issuer only accepts USDC on Base, and Laso bridges the payment to the account holder's own deposit address at the issuer over CCTP, which mints native USDC so the full amount arrives. Laso absorbs the bridge cost, so the price is exactly the amount that lands on the balance. Requires a linked card issuer account. Follow with POST /create-reloadable-card to create a card against the balance.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://laso.finance/fund-card-balance
| Category | Market data |
|---|---|
| Provider host | laso.finance |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 12 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"amount": 50
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"amount": {
"description": "USD of USDC to load onto the card balance (min $5, max $1000). The x402 price equals this amount; Laso absorbs the bridge cost.",
"type": "number"
}
},
"required": [
"amount"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}