DEV Community

AMILLI AI
AMILLI AI

Posted on

built the Stripe for AI agents in one day — $0.001 per transaction, no blockchain

Last night I built AMILLIPAY — a payment marketplace for AI agents.

Here's what that means in plain English:

Your AI agent needs to research a company. Instead of you manually
looking it up — your agent spends $0.25 and gets this back instantly:

[paste your Stripe research JSON output here]

One API call. No scraping. No manual research. Real data.

The problem I solved

Stripe minimum charge: $0.50
Visa minimum charge: ~$1.00
Crypto gas fees: unpredictable

None of them work for AI agent micro-transactions at $0.001.

So I built proprietary rails that do.

How it works

npm install @amillipay/sdk

const pay = new AmilliPay(process.env.AMILLIPAY_API_KEY)
const agent = await pay.agents.create({ name: 'My Sales Bot' })

// Agent researches a company for $0.25
const result = await fetch('https://www.amillipay.com/api/services/research', {
method: 'POST',
headers: { 'Authorization': Bearer ${process.env.AMILLIPAY_API_KEY} },
body: JSON.stringify({ from_agent_id: agent.id, company: 'Stripe' })
})

The marketplace

  • Web search — $0.01
  • Summarization — $0.05
  • Company research — $0.25
  • Data enrichment — $0.10
  • Data extraction — $0.075

Try it: amillipay.com
npm: @amillipay/sdk

Top comments (0)