Install
openclaw skills install @kent-x1/sp3ndPurchase 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.
openclaw skills install @kent-x1/sp3ndSP3ND 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.
https://us-central1-sp3nddotshop-prod.cloudfunctions.net
Authenticated requests use:
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.
payment_ready and pricing_status after creation and every refresh.payment_ready === true. Canonical current orders also report pricing_status: "ready_for_payment". The deprecated quoted value may appear on legacy orders, but it is compatibility metadata and never replaces the payment_ready gate.quote_expires_at immediately before payment and refresh the order if it has expired or is about to expire.payTo, memo, and resource come from the HTTP 402 response. Do not calculate or override them.user_wallet. Without it, an order remains partner-attributed and end-user points or history may not be credited.status does not replace pricing_status.register
-> create server-priced cart
-> create idempotent order
-> Ready for Payment
(`payment_ready: true` and payable `pricing_status`)
-> select shipping if required
-> pay using server-issued 402 requirements
-> Awaiting Review
(`awaiting_team_quote` / `manual_review`)
-> poll the order
-> select a valid shipping option if required
-> Ready for Payment
-> pay only after the readiness gate passes
-> 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 canonical pricing_status is ready_for_payment, the quote is current, and any required shipping option is selected. A deprecated quoted status may remain on legacy orders, but never use it without payment_ready === true. Do not transition directly from Awaiting Review to Paid.
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.
Use only product URLs and quantities as purchasing inputs:
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.
Create one stable key for the user's intended checkout. Persist it before sending the request.
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.
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:
{
"success": true,
"schema_version": 2,
"order": {
"order_id": "firebase-document-id",
"order_number": "ORD-1234567890",
"status": "Created",
"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": null
}
}
A mixed or unverified order remains intact and enters review:
{
"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": null
}
}
For an order in review:
Read one order when waiting for a quote or tracking a checkout:
GET /getPartnerOrder?order_id=<order_id>
X-API-Key: <api_key>
X-API-Secret: <api_secret>
List the authenticated partner's orders:
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.
When shipping_options contains choices and no valid selection exists, present the server-returned options to the user. Use the option's opaque ID; do not reconstruct its price or delivery estimate.
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 matches 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 is canonically ready_for_payment; deprecated quoted may appear on legacy orders, but payment_ready remains authoritative.Start payment using the canonical order ID:
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.
The initial call returns HTTP 402 with payment requirements in the PAYMENT-REQUIRED header and response body. Those requirements are authoritative:
{
"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 x402 payload back to POST /payAgentOrder in the base64-encoded PAYMENT-SIGNATURE header. Do not call the facilitator's verify or settle endpoints directly. SP3ND atomically claims, verifies, settles, and records the payment so the same signed transaction cannot be settled twice.
After SP3ND accepts the signed payload, 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.The reference implementation remains in:
scripts/x402-pay-with-memo.mjs
It must be invoked only after the readiness checks above.
If a partner uses POST /createPartnerTransaction, identify the purchase with:
{
"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.
Once paid, monitor the order's fulfillment status independently of pricing_status.
Pricing and payment gate:
Awaiting Review -> Ready for Payment -> Paid
Ready for Payment is the readiness condition defined above, not a substitute for inspecting the schema v2 fields. Verified-only orders may begin in that state without entering review.
Fulfillment after payment:
Paid -> Ordered -> Shipped -> Delivered
Do not infer shipment or delivery from payment alone.
cart_id, idempotency_key, order_id, and order_number.Idempotency-Key.GET /getPartnerOrder or list orders before retrying.PAYMENT_SETTLEMENT_UNKNOWN.quote_expires_at.Use a marketplace URL suitable for the recipient's destination, then let SP3ND verify the actual listing.
| 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 |
| 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.
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 validPricing = ['ready_for_payment', 'quoted'].includes(order.pricing_status);
const unexpired = !order.quote_expires_at ||
Date.parse(order.quote_expires_at) > Date.now();
if (!order.payment_ready || !validPricing || !unexpired) {
throw new Error('Order is not ready for payment; refresh it instead.');
}
if (order.shipping_options?.length && !order.selected_shipping_option) {
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 }),
});
}