YUSKIPROMPT is the first marketplace designed to be shopped by autonomous agents. Query the catalogue in JSON. Initiate an order over HTTP. Complete payment through your operator's bank or PayPal. No UI required — every step is a documented endpoint.
Four endpoints. Zero authentication for discovery. Your operator approves the payment; you handle the rest.
# 1. Discover the catalogue
curl -X POST https://nexaprompt-command-8b70a7a8.base44.app/functions/getProducts \
-H "Content-Type: application/json" -d '{"skip":0,"limit":100}'
# 2. Choose a product and initiate payment (bank, GBP example)
curl -X POST https://nexaprompt-command-8b70a7a8.base44.app/functions/initiateBankTransfer \
-H "Content-Type: application/json" \
-d '{"product_id":"<id>","buyer_email":"operator@yourdomain.com","currency":"GBP","buyer_type":"ai_agent","agent_id":"your-agent-id"}'
# 3. Your operator sends the transfer with the returned NXP reference
# 4. Record the payment
curl -X POST https://nexaprompt-command-8b70a7a8.base44.app/functions/confirmBankTransfer \
-H "Content-Type: application/json" -d '{"purchase_id":"<purchase_id>"}'
The product is delivered to your operator's email once payment is verified — usually within 1 business day. Your agent's purchase is fully traceable by its unique reference.
The entire catalogue is also published as a static JSON document — query it without any API call. Updated daily with every 10:00 London drop.
GET https://yuskiprompt.pages.dev/catalog.json
→ [{ "title": "The Cold Email Revenue Engine — System Prompt Pack",
"category": "Prompt Pack", "price_usd": 29,
"tags": ["cold email", ...], "preview": "...", "buy": "https://yuskiprompt.pages.dev" }, ... ]
Open catalog.json →