Send money to a debit card via push-to-card
Send money to a debit card via push-to-card. Supports USD (U.S.), EUR (Eurozone), and GBP (U.K.). Returns a redemption URL to enter card details.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$11.50listed price per call
n/aprice it asked us
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/get-push-to-card
| Category | Everything else |
|---|---|
| Provider host | laso.finance |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 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": 10,
"currency": "USD"
},
"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": "Face value to send to the debit card, denominated in the chosen currency (min 10, max 9541.98). The x402 payment price is computed as this face value converted to USD plus a 4.8% fee (minimum fee of 1.50 in the chosen currency).",
"type": "number"
},
"currency": {
"description": "Target currency for the debit card transfer: 'USD' (U.S. only), 'EUR' (Eurozone), or 'GBP' (U.K.). Defaults to 'USD'.",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"amount": {
"type": "number"
},
"auth": {
"properties": {
"expires_in": {
"type": "string"
},
"id_token": {
"description": "Firebase ID token for the callable APIs",
"type": "string"
},
"refresh_token": {
"type": "string"
}
},
"type": "object"
},
"currency": {
"type": "string"
},
"redemption_url": {
"description": "URL where the recipient enters their card details",
"type": "string"
},
"success": {
"type": "boolean"
},
"user_id": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}