> ## Documentation Index
> Fetch the complete documentation index at: https://agents.laso.finance/llms.txt
> Use this file to discover all available pages before exploring further.

# Order a gift card

> Pay USDC via x402 to order a gift card. First browse the catalog via `GET /search-gift-cards` to find the `laso_server_id` for the card you want, then call this endpoint with the amount and product ID.

Returns redemption details (URL, code, and/or PIN) depending on the gift card brand.



## OpenAPI

````yaml /api-reference/openapi.json get /order-gift-card
openapi: 3.1.0
info:
  title: Laso Finance x402 API
  version: 1.0.0
  description: >-
    Payment-gated API for Laso Finance. All paywalled routes use the x402
    protocol — the caller includes a USDC payment header on Base (eip155:8453)
    or Solana (solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp) and the server verifies
    payment before processing. Free routes require no payment header.


    ## Getting started


    To set up a wallet for making x402 payments, choose a provider:


    - **Locus** (default): https://paywithlocus.com/SKILL.md

    - **Sponge**: https://wallet.paysponge.com/skill.md — automatic x402 service
    discovery

    - **Ampersend**: https://www.ampersend.ai/getting-started.md — self-custody
    on Base with dual-approval spending limits. Laso Finance is a default skill,
    so no manual endpoint registration is needed.


    ## How x402 works


    1. Call a paywalled endpoint without a payment header → receive a `402
    Payment Required` response containing payment details (price, recipient
    address, network).

    2. Construct an x402 payment header using the details from the 402 response.

    3. Replay the request with the payment header → the server verifies payment
    and processes the request.


    ## Authentication flow


    `GET /auth` is free: callers prove wallet ownership by sending a
    `SIGN-IN-WITH-X` header (CAIP-122 wallet signature). Paywalled routes
    (`/get-card`, `/order-gift-card`, `/get-push-to-card`, `/order-intl-card`)
    also return fresh auth credentials in their responses, so a payment is never
    required just to obtain a token.


    Most routes return auth credentials (`id_token`, `refresh_token`,
    `expires_in`). Use the `id_token` as a Bearer token to call authenticated
    Laso Finance endpoints like `/get-card-data`. When the `id_token` expires,
    use `POST /auth` with `grant_type: refresh_token` to get a new one.


    ## Important notes


    The `/get-card` USA prepaid card endpoint is U.S. only — issued in USD,
    usable at U.S.-based merchants only, and physical goods must ship to a U.S.
    address. For non-U.S. merchants or non-USD currencies, use `GET
    /order-intl-card` instead (international prepaid card, admin-fulfilled
    within 24 hours). All cards are intended for the caller's own use.


    For step-by-step instructions, read https://laso.finance/SKILL.md
servers:
  - url: https://laso.finance
    description: Production
security: []
paths:
  /order-gift-card:
    get:
      summary: Order a gift card
      description: >-
        Pay USDC via x402 to order a gift card. First browse the catalog via
        `GET /search-gift-cards` to find the `laso_server_id` for the card you
        want, then call this endpoint with the amount and product ID.


        Returns redemption details (URL, code, and/or PIN) depending on the gift
        card brand.
      operationId: orderGiftCard
      parameters:
        - name: amount
          in: query
          required: true
          description: >-
            Gift card face value in the product's currency (min \$5, max
            \$9,000)
          schema:
            type: number
            minimum: 5
            maximum: 9000
        - name: laso_server_id
          in: query
          required: true
          description: >-
            The product identifier from the gift card catalog (GET
            /search-gift-cards)
          schema:
            type: string
        - name: country
          in: query
          required: false
          description: ISO 3166-1 alpha-2 country code (defaults to "US")
          schema:
            type: string
            default: US
      responses:
        '200':
          description: Gift card ordered successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  auth:
                    $ref: '#/components/schemas/AuthCredentials'
                  callable_base_url:
                    type: string
                    example: https://us-central1-kyc-ts.cloudfunctions.net
                  user_id:
                    type: string
                    description: The user's ID (lowercase wallet address)
                  gift_card:
                    $ref: '#/components/schemas/GiftCardOrder'
        '400':
          description: Invalid or missing parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: laso_server_id query parameter is required
        '402':
          description: >-
            Payment required. No valid x402 payment header was included. The
            response body is an empty JSON object; the payment details (price,
            recipient address, network) are base64-encoded in the
            `PAYMENT-REQUIRED` response header. x402 client libraries handle
            this automatically.
          content:
            application/json:
              schema:
                type: object
                example: {}
        '403':
          description: >-
            Account is frozen. The response includes a `frozen_message` field
            explaining why.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FrozenError'
              example:
                error: Account is frozen
                frozen_message: >-
                  Your account is frozen pending a compliance review. Contact
                  support@laso.finance.
components:
  schemas:
    AuthCredentials:
      type: object
      properties:
        id_token:
          type: string
          description: ID token — use as Bearer token for Laso Finance APIs
        refresh_token:
          type: string
          description: >-
            Use with POST /auth (grant_type=refresh_token) to get a new id_token
            when it expires
        expires_in:
          type: string
          description: Token lifetime in seconds
    GiftCardOrder:
      type: object
      description: Gift card order result with redemption details.
      properties:
        card_id:
          type: string
        laso_server_id:
          type: string
        amount:
          type: number
        currency:
          type: string
          example: USD
        country:
          type: string
          example: US
        redemption_url:
          type:
            - string
            - 'null'
          description: URL to redeem the gift card (if applicable)
        redemption_code:
          type:
            - string
            - 'null'
          description: Code to redeem the gift card (if applicable)
        pin_code:
          type:
            - string
            - 'null'
          description: PIN code for the gift card (if applicable)
        status:
          type: string
          enum:
            - completed
        timestamp:
          type: number
    Error:
      type: object
      properties:
        error:
          type: string
    FrozenError:
      type: object
      properties:
        error:
          type: string
          example: Account is frozen
        frozen_message:
          type: string
          description: Human-readable explanation of why the account is frozen

````