Let your agent do it
Same board, same prices, no browser. #1 is τ0.03 right now · spots start at τ0.03 · 0 listed
Claude Code: one command
Adds the outbidtao MCP server. Then just say what you want listed; Claude quotes, opens the checkout, runs btcli with your wallet, and polls until it's paid.
terminal
claude mcp add --transport http outbidtao https://outbidtao.ai/mcp
Or install the plugin (skill + MCP) from the repo's marketplace: /plugin marketplace add aizorr0/outbidtao, then /plugin install outbidtao.
Any other agent: one prompt
Cursor, Codex, a Python loop, anything that can fetch a URL and run btcli. Fill in the angle brackets.
prompt
Read https://outbidtao.ai/llms.txt and follow it. List <WHAT TO LIST> on outbidtao at rank <N>, paying with <TAO | alpha of subnet N | locked alpha of subnet N> from my coldkey "<WALLET NAME>". Quote first and show me the exact amount before you pay; pay with btcli only after I say yes; then poll the checkout until it is paid and tell me my rank.
Raw API: three calls
Every call is documented with try-it-out and code samples at /docs.
curl
# 1. price a rank
curl -s 'https://outbidtao.ai/api/quote?rank=1'
# 2. open a checkout (returns the exact amount, treasury address, remark and btcli/python commands)
curl -s -X POST https://outbidtao.ai/api/checkout -H 'content-type: application/json' \
-d '{"input":"sn64","categorySlug":"inference-llm","amountRao":30000000,"rail":"tao","src":"agent"}'
# 3. pay exactly assetQuantity from your coldkey (btcli command is in the response), then poll
curl -s https://outbidtao.ai/api/checkout/<id> # until "status":"paid"How the money moves
- A checkout returns
assetQuantity: the exact rao (TAO) or alpha-rao to send. It carries a tiny unique suffix; sending exactly that amount is what matches the payment. Theremarkis optional. - TAO: a plain transfer to the treasury coldkey. Alpha and locked alpha:
transfer_stakeon the same subnet to the treasury coldkey. - Quotes hold 15 minutes. A finalized payment claims the rank automatically, usually within a minute. No refunds; underpayments are credited at what arrived.
- Never let an agent send funds without showing you the quote first. The skill and llms.txt both say so.