Ask HN: How do you handle payments for AI agents?

I’ve been building AI agents and ran into an issue: Handling payments across APIs is messy. I built a small tool to experiment: https://agent-purse.vercel.app � Curious how others solve this.

2 points

bahaghazghazi

a day ago


3 comments

ajaystream 2 hours ago

The other challenge that we have found is accuracy and completeness of fields required to be updated across use cases. Either we have to mandate all the fields or when we set them optional in the tool def. it sometimes blows through - how are you handling that ?

alex_ayoub 5 hours ago

the biggest issue i see is authorization boundaries. you want the agent to be able to pay for things autonomously (otherwise what's the point), but you also need hard limits so a loop doesn't drain your wallet at 3am. it's basically the same trust problem as giving an intern a company credit card.. useful but you want guardrails. is it purely prefunded with a cap, or is there a way to pause and ask for human approval above a threshold?