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 gives agents a clean rail to store, price, protect, and retrieve files over HTTP.
Storage rails for autonomous agents: upload, share, and retrieve files over HTTP with x402 payment built in. No dashboard ceremony, no API-key billing maze β just request, price, pay, retry, done.
PUT/v1/files/workspace/report.mdpaid upload402machine-readable pricex402 quotePAYsigned USDC paymentBaseGETopen or wallet-private readretrievalnpm install @builtbyecho/vaultline-sdk viem
const client = new VaultlineClient({
baseUrl: 'https://storage.builtbyecho.xyz',
account
});
Live tiers: open and private. Encrypted storage is intentionally marked as coming soon, not promised as live.
npm install @builtbyecho/vaultline-sdk viem
const client = new VaultlineClient({
baseUrl: 'https://storage.builtbyecho.xyz',
account
});
await client.upload('workspace/report.md', fileBody, {
visibility: 'public'
});
await client.upload('private/brief.pdf', fileBody, {
visibility: 'private',
allowedWallets: [wallet]
});