# Laso Finance Gift Card Order

> Laso Finance Gift Card Order is a paid API for AI agents from laso.finance, paid per call via x402, $5.24/call, status unknown (last checked 2026-09-15).

Orders a gift card from the Laso catalog by product ID, amount, and country, returning a purchased gift card.

## Facts

- Endpoint: GET https://laso.finance/order-gift-card
- Price: $5.24/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/laso-finance-gift-card-order-642c9294
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C1sFDIz4viojMG2Pt-vHH

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability laso-finance-gift-card-order-642c9294
```

Example prompt: Order me a $50 gift card using product ID 'amazon-us-001' for the US from the Laso gift card catalog.

## When to prefer this

Use this endpoint when you need to programmatically purchase a specific gift card from the Laso catalog by its product ID, amount, and country — especially when you have already identified the product via GET /search-gift-cards and are ready to complete the purchase.

## Known failure modes

- Invalid or unknown laso_server_id returns error or empty result
- Amount below $5 or above $9000 is rejected as out of range
- Invalid country code causes request failure
- Payment of 5.24 USDC not completed results in 402 Payment Required
- Product out of stock or unavailable in requested country

## How this service works

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

## Output

Returns a purchased gift card object, likely including the card code, denomination, brand, and order confirmation details for the requested product and amount.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "auth": {
   "id_token": "eyJ...",
   "expires_in": "3600",
   "refresh_token": "AMf..."
  },
  "user_id": "0xabc...",
  "gift_card": {
   "amount": 5,
   "status": "completed",
   "card_id": "gc_123",
   "laso_server_id": "product_123"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/laso-finance-gift-card-order-642c9294/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from laso.finance](https://www.zero.xyz/host/laso.finance/llms.txt)
