---
name: sp3nd
description: Purchase physical products through SP3ND with USDC on Solana. Use this skill to register an agent, create server-priced carts, place idempotent orders, handle manual-review and shipping-quote lifecycles, pay payment-ready orders through x402, and track fulfillment.
metadata:
  version: 1.9.0
  openclaw:
    requires:
      env:
        - SP3ND_API_KEY
        - SP3ND_API_SECRET
    primaryEnv: SP3ND_API_KEY
    config:
      requiredEnv:
        - SP3ND_API_KEY
        - SP3ND_API_SECRET
      optionalEnv:
        - SOLANA_RPC_URL
        - AGENT_WALLET_PATH
      stateDirs:
        - .wallet.json
---

# SP3ND Agent Purchasing

SP3ND is a purchasing agent that accepts stablecoins and completes supported purchases in fiat. This skill describes the production Agent API contract, including asynchronous pricing and manual review.

> **Payment scope:** this skill intentionally documents the optional legacy
> agentic-skill x402 payment contract. A normal server-side Partner API
> integration should instead use `createPartnerTransaction` as documented in
> the [Partner API quick start](https://sp3nd.shop/partner-api/docs). The SP3ND
> MCP is a third, isolated OAuth flow at `https://mcp.sp3nd.shop/mcp`. Do not
> combine these payment surfaces.

## Base URL and authentication

```text
https://us-central1-sp3nddotshop-prod.cloudfunctions.net
```

Authenticated requests use:

```http
X-API-Key: <api_key>
X-API-Secret: <api_secret>
```

Keep both credentials and the agent wallet private. Never log or commit secrets or wallet key material.

## Non-negotiable safety rules

1. **SP3ND is authoritative for product data and money.** Submit product URLs and quantities. Never treat caller-supplied title, price, shipping, tax, fee, total, currency, recipient, or memo as authoritative.
2. **An order is not always immediately payable.** Inspect `payment_ready` and `pricing_status` after creation and every refresh.
3. **Only pay when `payment_ready === true`.** `pricing_status` explains the pricing workflow but is never a second payment gate.
4. **Never pay an expired quote.** Check `quote_expires_at` immediately before payment and refresh the order if it has expired or is about to expire.
5. **Use stable idempotency keys.** Reuse the same order key after a timeout or uncertain response. Never generate a new key for a retry of the same intended purchase.
6. **Use the server's payment requirements.** Amount, asset/currency, `payTo`, memo, and resource come from the HTTP 402 response. Do not calculate or override them.
7. **Always attribute end-user orders.** Send the end user's Solana address as `user_wallet`. Without it, an order remains partner-attributed and end-user points or history may not be credited.
8. **Treat order status and pricing status separately.** Fulfillment `status` does not replace `pricing_status`.

## Lifecycle at a glance

```text
register
  -> create server-priced cart
  -> create idempotent order
      -> Ready for Payment
          (`payment_ready: true`; normally `ready_for_payment`)
          -> pay using server-issued 402 requirements
      -> Awaiting Review
          (`payment_ready: false`; `awaiting_team_quote`)
          -> poll the order
          -> Shipping Selection Required
              (`payment_ready: false`; `shipping_selection_required`)
              -> select a current opaque shipping option
          -> Ready for Payment
          -> pay only after `payment_ready` becomes true
  -> track Paid / Ordered / Shipped / Delivered
```

Mixed carts and items SP3ND cannot verify automatically remain one order. They are not split by the caller and must not be paid early.
An order in `Awaiting Review` must first reach the conceptual **Ready for Payment** state before it can be paid. This state means `payment_ready === true`, the quote is current, and any required shipping option is selected. Do not transition directly from `Awaiting Review` to `Paid`.

The public `checkout_role` vocabulary is exactly `direct_payment` and `manual_review`. Older stored role names are normalized before an order is returned.
The primary public `pricing_status` vocabulary is exactly `awaiting_team_quote`, `shipping_selection_required`, and `ready_for_payment`. Treat it as workflow information; `payment_ready` remains the sole payment permission.

## 1. Register an agent

```http
POST /registerAgent
Content-Type: application/json

{
  "agent_name": "MyShoppingBot",
  "solana_public_key": "<agent-wallet-public-key>",
  "contact_email": "operator@example.com",
  "description": "Purchases products for approved users"
}
```

The response returns `api_key` and a one-time `api_secret`. Save the secret immediately.

If the secret is lost, call `POST /regenerateAgentSecret` using the registered wallet's signed, timestamped challenge. Regeneration invalidates the old secret.

## 2. Create a server-priced cart

Use only product URLs and quantities as purchasing inputs:

```http
POST /createPartnerCart
Content-Type: application/json
X-API-Key: <api_key>
X-API-Secret: <api_secret>

{
  "items": [
    {
      "product_url": "https://www.amazon.com/dp/B08XYZ123",
      "quantity": 1
    },
    {
      "product_url": "https://www.ebay.com/itm/123456789",
      "quantity": 1
    }
  ],
  "user_wallet": "<end-user-solana-wallet>"
}
```

Do not send a caller-selected `price` to control the purchase. Any display metadata accepted for compatibility is non-authoritative; SP3ND resolves the listing and computes purchasable values.

Cart totals can still be provisional. In particular, eBay availability and shipping depend on the destination. Always provide the final destination when creating the order.

## 3. Create an idempotent order

Create one stable key for the user's intended checkout. Persist it before sending the request.

```http
POST /createPartnerOrder
Content-Type: application/json
X-API-Key: <api_key>
X-API-Secret: <api_secret>
Idempotency-Key: checkout_01JSTABLEKEY

{
  "cart_id": "cart_abc123",
  "idempotency_key": "checkout_01JSTABLEKEY",
  "user_wallet": "<end-user-solana-wallet>",
  "customer_email": "customer@example.com",
  "shipping_address": {
    "name": "John Doe",
    "recipient": "John Doe",
    "address1": "123 Main St",
    "address2": "Apt 4B",
    "city": "San Francisco",
    "state": "CA",
    "postalCode": "94105",
    "country": "United States",
    "countryCode": "US",
    "phone": "+14155551234"
  }
}
```

Send the stable key in either the `Idempotency-Key` header or the `idempotency_key` body field. Supplying both with the same value is recommended for broad client compatibility. If both are omitted by a legacy integration, the server falls back to `cart_id`, but new integrations must supply an explicit key.

For eBay, the complete destination is required for the location-aware offer and shipping check. Do not assume a price from a different country, postal code, or eBay TLD remains valid.

### Schema v2 lifecycle fields

Create and order-read responses include additive `schema_version: 2` lifecycle fields. Existing fields remain available.

A verified-only order can be created in a payable state:

```json
{
  "success": true,
  "schema_version": 2,
  "order": {
    "order_id": "firebase-document-id",
    "order_number": "ORD-1234567890",
    "status": "Created",
    "checkout_role": "direct_payment",
    "pricing_status": "ready_for_payment",
    "requires_manual_quote": false,
    "payment_ready": true,
    "quote_revision": 1,
    "quote_expires_at": "2026-07-26T18:30:00.000Z",
    "shipping_options": [],
    "selected_shipping_option_id": null,
    "selected_shipping_option": null
  }
}
```

A mixed or unverified order remains intact and enters review:

```json
{
  "success": true,
  "schema_version": 2,
  "order": {
    "order_id": "firebase-document-id",
    "order_number": "ORD-1234567890",
    "status": "Awaiting Review",
    "checkout_role": "manual_review",
    "pricing_status": "awaiting_team_quote",
    "requires_manual_quote": true,
    "payment_ready": false,
    "quote_revision": 0,
    "quote_expires_at": null,
    "shipping_options": [],
    "selected_shipping_option_id": null,
    "selected_shipping_option": null
  }
}
```

For an order in review:

- Show the user that SP3ND is reviewing pricing or shipping.
- Do not call a payment endpoint.
- Poll the singular order endpoint at a reasonable interval or refresh on user action.
- Continue only when the server returns a current payable quote.

## 4. Read orders

Read one order when waiting for a quote or tracking a checkout:

```http
GET /getPartnerOrder?order_id=<order_id>
X-API-Key: <api_key>
X-API-Secret: <api_secret>
```

List the authenticated partner's orders:

```http
GET /getPartnerOrders
X-API-Key: <api_key>
X-API-Secret: <api_secret>
```

**To list all orders, omit `status` (recommended).** `status=all` is also supported for compatibility. Otherwise, use `status` only for a real named order status such as `Created`, `Awaiting Review`, `Paid`, `Ordered`, `Shipped`, or `Delivered`.

Order reads expose the same additive schema v2 lifecycle fields as order creation. Preserve unknown fields for forward compatibility.

## 5. Select a quoted shipping option

When `pricing_status === "shipping_selection_required"`, present the server-returned `shipping_options` to the user. Every option uses `shipping_option_id` as its opaque identifier. Do not reconstruct an option's price or delivery estimate.

The canonical option shape is:

- `shipping_option_id`
- `label`
- optional `description`
- optional `estimated_delivery`
- `shipping_amount`
- `tax_amount`
- `total_amount`
- `currency`

The additive aliases `id`, `name`, `min_days`, and `max_days` may appear for compatibility. Always POST the canonical opaque `shipping_option_id`.

`selected_shipping_option_id` is the canonical selected identifier. `selected_shipping_option` contains the selected option in the normalized shape above. `selected_manual_shipping_option` is a deprecated compatibility alias for that same normalized object.

```http
POST /selectPartnerOrderShippingOption
Content-Type: application/json
X-API-Key: <api_key>
X-API-Secret: <api_secret>

{
  "order_id": "<order_id>",
  "shipping_option_id": "<opaque-option-id>"
}
```

The server validates the quote revision and expiry. Use the returned order as the new source of truth. If the selection is rejected because the quote changed or expired, refresh the order and ask the user to choose from the new options.

Before payment, confirm:

- `selected_shipping_option_id` and `selected_shipping_option` match the user's current choice when a choice is required.
- `quote_revision` is the latest revision returned by the server.
- `quote_expires_at` has not passed.
- `payment_ready === true`.

`pricing_status` remains useful for rendering the workflow, but it must not be used as an additional payment gate.

## 6. Pay a payment-ready order with the agentic-skill x402 contract

Start payment using the canonical order ID:

```http
POST /payAgentOrder
Content-Type: application/json
X-API-Key: <api_key>
X-API-Secret: <api_secret>

{
  "order_id": "<order_id>"
}
```

`order_number` is optional. If supplied, the server validates that it belongs to `order_id`.

Call `payAgentOrder` directly. Do not call `createPartnerTransaction` first;
that is the alternative standard Partner API payment path.

The initial call returns HTTP 402 with payment requirements in the `PAYMENT-REQUIRED` header and response body. Those requirements are authoritative:

```json
{
  "x402Version": 2,
  "accepts": [
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "maxAmountRequired": "<server-value>",
      "resource": "<server-value>",
      "payTo": "<server-value>",
      "asset": "<server-value>",
      "extra": {
        "order_id": "<order_id>",
        "order_number": "<order-number>",
        "feePayer": "<server-value>"
      }
    }
  ]
}
```

Build and sign the transfer strictly from the returned requirements. Include the exact memo specified by the response. Never reuse a 402 response from another order or quote revision.

Submit the signed result back to the same SP3ND endpoint in the `PAYMENT-SIGNATURE` header:

```http
POST /payAgentOrder
Content-Type: application/json
X-API-Key: <api_key>
X-API-Secret: <api_secret>
PAYMENT-SIGNATURE: <signed-payment-payload>

{
  "order_id": "<order_id>"
}
```

Do not call, configure, or authenticate with a facilitator directly. SP3ND's `payAgentOrder` endpoint is the sole settlement authority. After submitting the signature to SP3ND, poll `GET /getPartnerOrder?order_id=...` until the order is `Paid`.

- `PAYMENT_SETTLEMENT_IN_PROGRESS`: do not submit another payment; keep reading the order until settlement resolves.
- `PAYMENT_SETTLEMENT_UNKNOWN` with `retryable: false`: do not retry payment. Retain the `order_id` and escalate for manual reconciliation because the transfer may have reached the network.

### Alternative standard Partner API payment

A server-side Partner API integration that does not intentionally implement
the agentic-skill x402 contract should use `POST /createPartnerTransaction`
instead. Identify the purchase with:

```json
{
  "order_id": "<order_id>"
}
```

`order_number` may also be supplied and is validated against `order_id`. Caller-supplied `amount`, `currency`, `memo`, and recipient fields are ignored. Use only the server-returned payment instructions. Build and broadcast the wallet payment, then poll the order while SP3ND confirms it asynchronously. Do not call `payAgentOrder` for the same payment.

### MCP is separate

MCP clients connect to `https://mcp.sp3nd.shop/mcp` and use its advertised
OAuth-protected tools. They use neither Partner API payment endpoint and never
receive Partner API credentials.

## 7. Track fulfillment

Once paid, monitor the order's fulfillment `status` independently of `pricing_status`.

Pricing and payment gate:

```text
Awaiting Review -> Ready for Payment -> Paid
```

`Ready for Payment` means `payment_ready === true`; it is not inferred from `pricing_status`. Verified-only orders may begin in that state without entering review.

Fulfillment after payment:

```text
Paid -> Ordered -> Shipped -> Delivered
```

Do not infer shipment or delivery from payment alone.

## Retry and idempotency behavior

- Persist `cart_id`, `idempotency_key`, `order_id`, and `order_number`.
- Retry order creation with the original `Idempotency-Key`.
- After a timeout, call `GET /getPartnerOrder` or list orders before retrying.
- Never create a second cart/order solely because the response was lost.
- Never pay twice because a settlement response was lost. Read the order first, and stop for manual reconciliation if the API reports `PAYMENT_SETTLEMENT_UNKNOWN`.
- Do not cache a quote beyond `quote_expires_at`.

## Marketplace and destination rules

Use a marketplace URL suitable for the recipient's destination, then let SP3ND verify the actual listing.

### Amazon storefronts

| Region | Storefront |
|---|---|
| United States | `amazon.com` |
| United Kingdom | `amazon.co.uk` |
| Canada | `amazon.ca` |
| Germany | `amazon.de` |
| France | `amazon.fr` |
| Spain | `amazon.es` |
| Italy | `amazon.it` |
| Netherlands | `amazon.nl` |
| Belgium | `amazon.com.be` |
| Poland | `amazon.pl` |
| Sweden | `amazon.se` |
| Brazil | `amazon.com.br` |
| Mexico | `amazon.com.mx` |
| Australia | `amazon.com.au` |
| India | `amazon.in` |
| Japan | `amazon.co.jp` |
| Singapore | `amazon.sg` |
| United Arab Emirates | `amazon.ae` |
| Saudi Arabia | `amazon.sa` |
| Egypt | `amazon.eg` |
| Turkey | `amazon.com.tr` |
| South Africa | `amazon.co.za` |

### eBay storefronts

| Region | Storefront |
|---|---|
| United States | `ebay.com` |
| Canada | `ebay.ca` |
| United Kingdom | `ebay.co.uk` |
| Germany | `ebay.de` |
| France | `ebay.fr` |
| Italy | `ebay.it` |
| Spain | `ebay.es` |
| Australia | `ebay.com.au` |

eBay seller availability, item price, and shipping can change with destination. The final order address is always authoritative.

## Minimal lifecycle example

```javascript
const BASE_URL = 'https://us-central1-sp3nddotshop-prod.cloudfunctions.net';
const auth = {
  'Content-Type': 'application/json',
  'X-API-Key': process.env.SP3ND_API_KEY,
  'X-API-Secret': process.env.SP3ND_API_SECRET,
};

async function json(response) {
  const body = await response.json();
  if (!response.ok) throw new Error(body.error || `${response.status}`);
  return body;
}

async function getOrder(orderId) {
  const result = await json(await fetch(
    `${BASE_URL}/getPartnerOrder?order_id=${encodeURIComponent(orderId)}`,
    { headers: auth },
  ));
  return result.order ?? result;
}

async function beginCheckout({ productUrl, userWallet, email, shippingAddress, checkoutKey }) {
  const cartResult = await json(await fetch(`${BASE_URL}/createPartnerCart`, {
    method: 'POST',
    headers: auth,
    body: JSON.stringify({
      items: [{ product_url: productUrl, quantity: 1 }],
      user_wallet: userWallet,
    }),
  }));

  const orderResult = await json(await fetch(`${BASE_URL}/createPartnerOrder`, {
    method: 'POST',
    headers: { ...auth, 'Idempotency-Key': checkoutKey },
    body: JSON.stringify({
      cart_id: cartResult.cart.cart_id,
      idempotency_key: checkoutKey,
      user_wallet: userWallet,
      customer_email: email,
      shipping_address: shippingAddress,
    }),
  }));

  return orderResult.order;
}

function assertPaymentReady(order) {
  const unexpired = !order.quote_expires_at ||
    Date.parse(order.quote_expires_at) > Date.now();

  if (!order.payment_ready || !unexpired) {
    throw new Error('Order is not ready for payment; refresh it instead.');
  }

  if (
    order.pricing_status === 'shipping_selection_required' ||
    (order.shipping_options?.length && !order.selected_shipping_option_id)
  ) {
    throw new Error('Select a current shipping option before payment.');
  }
}

async function requestPayment(order) {
  assertPaymentReady(order);
  return fetch(`${BASE_URL}/payAgentOrder`, {
    method: 'POST',
    headers: auth,
    body: JSON.stringify({ order_id: order.order_id }),
  });
}
```

## Operator controls

- Use a dedicated, least-funded wallet for the agent.
- Add an application-level approval limit before order creation or payment.
- Validate the recipient and destination before creating the order.
- Show review, quote expiry, shipping choice, and total changes to the user.
- Never expose a private shipping address to an unrelated purchaser.

## Support

- API documentation: https://sp3nd.shop/partner-api/docs
- Partner dashboard: https://sp3nd.shop/partner-api/dashboard
- Support: support@sp3nd.shop
