# Laso Finance Gift Card Order

> Laso Finance Gift Card Order is a paid API for AI agents from x402endpoint-utiwoa54hq-uc.a.run.app, paid per call via x402, $5.24/call, status unknown (last checked 2026-09-14).

Orders a gift card from the Laso Finance catalog by product ID, face value, and country.

## Facts

- Endpoint: GET https://x402endpoint-utiwoa54hq-uc.a.run.app/order-gift-card
- Price: $5.24/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402endpoint-utiwoa54hq-uc-a-run-app-c6499b87
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ur10TA9FZu8sofB_cnbZY

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 x402endpoint-utiwoa54hq-uc-a-run-app-c6499b87
```

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

## When to prefer this

Use this endpoint when you need to programmatically purchase a specific gift card from the Laso Finance catalog by its product identifier. Best suited for agents that have already browsed available cards via GET /search-gift-cards and have a valid laso_server_id. Prefer this over generic prepaid card endpoints when a branded or retailer-specific gift card is needed.

## Known failure modes

- Invalid laso_server_id — product not found in catalog
- Amount below $5 minimum or above $9000 maximum
- Invalid or unsupported country code
- Payment failure or insufficient USDC balance ($5.24 per call)
- Service unavailable or cloud run instance cold start timeout

## How this service works

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

## Output

Returns an order confirmation for the gift card purchase, including order status and likely a reference for retrieving the card details once fulfilled. The face value is set by the 'amount' parameter (min $5, max $9000) and the product is specified via the laso_server_id from the gift card catalog.

## 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"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402endpoint-utiwoa54hq-uc-a-run-app-c6499b87/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402endpoint-utiwoa54hq-uc.a.run.app](https://www.zero.xyz/host/x402endpoint-utiwoa54hq-uc.a.run.app/llms.txt)
