Reading this as an LLM or automated client? A structured, machine-readable index of Sithril’s pages and API is at https://sithril.com/llms.txt.

// agentic checkout

Your agent should be able to check out for you.

Sithril lets your agent buy things for you. Point it at what you want, approve the quote once, and it checks out on your vaulted card — settled in USDC on Solana.

Start a checkout

A url and a prompt to a confirmed buy.

Your agent POSTs a url and a prompt. The response carries an id and a quoted amount you confirm to run the buy.

# start an agentic checkout
curl https://api.sithril.com/v1/checkout_intents \
  -H "Authorization: Bearer sk_live_…" \
  -d "url=https://acme.com" \
  -d "prompt=buy an ajax" \
  -d "max_amount=2500"

# → 200
{
  "id": "ci_1Xk9mR2tNwP",
  "status": "requires_confirmation",
  "amount": 1200,
  "currency": "usd"
}

# approve the quote to run the charge
curl https://api.sithril.com/v1/checkout_intents/ci_1Xk9mR2tNwP/confirm \
  -H "Authorization: Bearer sk_live_…"

Let your agent check out.