mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Order a gift card from the catalog

Order a gift card from the catalog. Browse available cards at GET /search-gift-cards.

Do you run laso.finance? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
5240000 (raw units)
price
21
calls / 30d
11
unique payers
2026-09-16
updated

Provider

laso.finance · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x3291e96b3bff7ed56e3ca8364273c5b4654b2b37",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "5240000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "3MZVk97x9SeRxbYpc3jhzRfU2fyA3emYutnqfn9kNfYX",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "5240000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "amount": 5,
          "country": "US",
          "laso_server_id": "product_123"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "auth": {
            "expires_in": "3600",
            "id_token": "eyJ...",
            "refresh_token": "AMf..."
          },
          "gift_card": {
            "amount": 5,
            "card_id": "gc_123",
            "laso_server_id": "product_123",
            "status": "completed"
          },
          "user_id": "0xabc..."
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "amount": {
                  "description": "Gift card face value (min $5, max $9000)",
                  "type": "number"
                },
                "country": {
                  "description": "ISO 3166-1 alpha-2 country code (defaults to 'US')",
                  "type": "string"
                },
                "laso_server_id": {
                  "description": "Product identifier from the gift card catalog (GET /search-gift-cards)",
                  "type": "string"
                }
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "auth": {
                  "properties": {
                    "expires_in": {
                      "type": "string"
                    },
                    "id_token": {
                      "description": "Firebase ID token for the callable APIs",
                      "type": "string"
                    },
                    "refresh_token": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "gift_card": {
                  "properties": {
                    "amount": {
                      "type": "number"
                    },
                    "card_id": {
                      "type": "string"
                    },
                    "laso_server_id": {
                      "type": "string"
                    },
                    "status": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "user_id": {
                  "type": "string"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://laso.finance/order-gift-card"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://laso.finance/order-gift-card");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://laso.finance/order-gift-card")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/213.json, and this resource appears in /discovery/resources and /discovery/search.