# StableFlowers Florist-Delivered Flower Orders

> StableFlowers Florist-Delivered Flower Orders is a paid API for AI agents from stableflowers.dev, paid per call via x402, $300/call, status unknown (last checked 2026-09-15).

Places a florist-delivered flower order via Florist One, paid with USDC on Base using x402 payments.

## Facts

- Endpoint: POST https://stableflowers.dev/api/orders
- Price: $300/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableflowers-florist-delivered-flower-orders-6c51ffa5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LTPs8glLRNkykPNdmfqL-

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 stableflowers-florist-delivered-flower-orders-6c51ffa5 -d '<json body>'
```

Example prompt: Send a bouquet of red roses to Sarah Johnson at 42 Maple Street, Austin TX 78701 for her birthday tomorrow — use StableFlowers to have a local florist deliver them.

## When to prefer this

Choose this endpoint when the user wants to send real, physically delivered flowers through a florist network and is willing to pay with USDC on Base via x402. Ideal for gifting, occasions, and situations where actual floral delivery — not digital gifts or vouchers — is required and crypto payment is acceptable.

## Known failure modes

- Insufficient USDC balance or x402 payment failure — order not placed
- Invalid or unserviceable delivery address — florist coverage unavailable
- Missing required recipient or delivery fields — validation error returned
- Network timeout during order submission — indeterminate order state, check for duplicate before retrying
- Florist One downstream unavailability — order cannot be fulfilled

## How this service works

Send florist-delivered flowers through Florist One with x402 payments on Base.

## Output

An order confirmation object including an order ID, assigned florist details, estimated delivery window, and the delivery address and recipient information as submitted.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "clientRequestId",
      "buyer",
      "products"
     ],
     "properties": {
      "buyer": {
       "type": "object",
       "required": [
        "email",
        "name",
        "phone"
       ],
       "properties": {
        "name": {
         "type": "string",
         "maxLength": 100,
         "minLength": 1
        },
        "email": {
         "type": "string",
         "format": "email",
         "pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$",
         "maxLength": 100
        },
        "phone": {
         "type": "string",
         "maxLength": 20,
         "minLength": 10
        }
       },
       "additionalProperties": false
      },
      "products": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "code",
         "price",
         "deliverydate",
         "cardmessage",
         "recipient"
        ],
        "properties": {
         "code": {
          "type": "string",
          "minLength": 1
         },
         "price": {
          "type": "number",
          "minimum": 0
         },
         "recipient": {
          "type": "object",
          "required": [
           "name",
           "institution",
           "address1",
           "address2",
           "city",
           "state",
           "country",
           "phone",
           "zipcode"
          ],
          "properties": {
           "city": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1
           },
           "name": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1
           },
           "phone": {
            "type": "string",
            "maxLength": 20,
            "minLength": 10
           },
           "state": {
            "type": "string",
            "maxLength": 2,
            "minLength": 2
           },
           "country": {
            "type": "string",
            "maxLength": 2,
            "minLength": 2
           },
           "zipcode": {
            "type": "stri
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableflowers-florist-delivered-flower-orders-6c51ffa5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableflowers.dev](https://www.zero.xyz/host/stableflowers.dev/llms.txt)
