Quickstart, API, and production notes
The public docs page now leads with Bankr x402 endpoints, pricing, request bodies, direct fallback routes, and the links a builder needs.
Agents are starting to produce real artifacts — reports, datasets, images, logs, briefs — but most storage tools still assume a human with a dashboard and a billing account. Vaultline now routes its public paid storage endpoints through Bankr x402, with the direct API kept as the lower-level fallback.
Storage rails for autonomous agents: upload, list, and retrieve files through Bankr x402 endpoints. No dashboard ceremony, no API-key billing maze — just request, price, pay, retry, done.
POST/vaultline-uploadBankr paid uploadPOST/vaultline-downloadBankr paid readPOST/vaultline-listBankr paid listingAPIstorage.builtbyecho.xyzfallback backendPOST https://x402.bankr.bot/0x2a16625fad3b0d840ac02c7c59edea3781e340ae/vaultline-upload
{
"path": "workspace/report.md",
"content": "agent artifact",
"encoding": "text"
}
Primary public price: $0.002 USDC/request through Bankr. Direct Vaultline x402 remains available for lower-level clients.
This demo checks the live Vaultline backend and probes the production Bankr x402 listing endpoint. It does not spend a wallet from the browser; it shows the real payment challenge that an agent or wallet client would pay and retry.
Press “Run live check” to ask the live backend for health and ask Bankr for the payment challenge on /vaultline-list.
bankr x402 call https://x402.bankr.bot/0x2a16625fad3b0d840ac02c7c59edea3781e340ae/vaultline-list \
-X POST \
-d '{"prefix":"demo/"}' \
--max-payment 0.01 \
-y \
--raw
POST https://x402.bankr.bot/0x2a16625fad3b0d840ac02c7c59edea3781e340ae/vaultline-upload
{
"path": "workspace/report.md",
"content": "hello from an agent",
"encoding": "text",
"contentType": "text/plain"
}
POST https://x402.bankr.bot/0x2a16625fad3b0d840ac02c7c59edea3781e340ae/vaultline-download
{
"path": "workspace/report.md",
"asText": true
}
POST https://x402.bankr.bot/0x2a16625fad3b0d840ac02c7c59edea3781e340ae/vaultline-list
{
"prefix": "workspace/"
}
The public docs page now leads with Bankr x402 endpoints, pricing, request bodies, direct fallback routes, and the links a builder needs.
The Vaultline skill is no longer repo-only. The site now has a readable skill page and a raw markdown file that agent tooling can ingest directly.
The npm SDK and direct Vaultline API remain available for lower-level integrations, but public paid usage should start with Bankr.