Skip to main content
GET
/
get-card
Order a prepaid card
curl --request GET \
  --url https://laso.finance/get-card
{
  "auth": {
    "id_token": "<string>",
    "refresh_token": "<string>",
    "expires_in": "<string>"
  },
  "callable_base_url": "https://us-central1-kyc-ts.cloudfunctions.net",
  "user_id": "<string>",
  "card": {
    "card_id": "<string>",
    "usd_amount": 123,
    "country": "US",
    "timestamp": 123,
    "timestamp_readable": "<string>",
    "status": "pending"
  }
}

Query Parameters

amount
number
required

USD amount to load on the card (min $5, max $1000)

Required range: 5 <= x <= 1000
format
enum<string>
default:json

Response format. json (default) returns auth credentials and card info for agents. html returns a redirect page for browsers.

Available options:
json,
html

Response

Card order response. JSON by default, or HTML redirect if format=html.

auth
object
callable_base_url
string
Example:

"https://us-central1-kyc-ts.cloudfunctions.net"

user_id
string

The user's ID (lowercase wallet address)

card
object

Card order info returned by /get-card. Status is always pending initially — poll /get-card-data to check when card details are ready.