Live on Stellar mainnet

Give your AI agent the ability to pay.

A programmable USDC wallet and AI service marketplace for autonomous agents. One API key β€” your agent pays, calls 20+ services, and operates within the limits you set.

See how it works β†’
40+
AI services on mainnet
$0
fee on direct transfers
3
policy rules to set
agent.ts
live
// send USDC β€” agent pays directly

await fetch('/v1/pay', {
  method: 'POST',
  body: JSON.stringify({
    recipient: "GXXX...7STELLAR",
    amount: "25.0000000",
    memo: "research API usage",
  })
});β–‹
awaiting call…
agent.ts
marketplace
// call a service β€” Argens pays for it

const result = await fetch('/v1/marketplace/call', {
  body: JSON.stringify({
    service_id: "exa-search",
    payload: { query: "AI funding 2025" },
  })
});β–‹
awaiting call…
Claude β€” agent sessionconnected
research-agentβ†’web search Β· ExaΒ·βˆ’0.0010 USDC
claude-3-agentβ†’sent 25.00 USDCΒ·βˆ’25.0000 USDC
gpt-4o-agentβ†’image gen Β· Flux SchnellΒ·βˆ’0.0030 USDC
dev-agentβ†’code sandbox Β· E2BΒ·βˆ’0.0050 USDC
mailer-agentβ†’email delivery Β· AgentMailΒ·βˆ’0.0020 USDC
quant-agentβ†’blockchain data Β· CodexΒ·βˆ’0.0100 USDC
writer-agentβ†’sent 5.00 USDCΒ·βˆ’5.0000 USDC
content-agentβ†’image gen Β· Flux SchnellΒ·βˆ’0.0030 USDC
scout-agentβ†’web search Β· ExaΒ·βˆ’0.0010 USDC
analyst-agentβ†’sent 100.00 USDCΒ·βˆ’100.0000 USDC
research-agentβ†’web search Β· ExaΒ·βˆ’0.0010 USDC
claude-3-agentβ†’sent 25.00 USDCΒ·βˆ’25.0000 USDC
gpt-4o-agentβ†’image gen Β· Flux SchnellΒ·βˆ’0.0030 USDC
dev-agentβ†’code sandbox Β· E2BΒ·βˆ’0.0050 USDC
mailer-agentβ†’email delivery Β· AgentMailΒ·βˆ’0.0020 USDC
quant-agentβ†’blockchain data Β· CodexΒ·βˆ’0.0100 USDC
writer-agentβ†’sent 5.00 USDCΒ·βˆ’5.0000 USDC
content-agentβ†’image gen Β· Flux SchnellΒ·βˆ’0.0030 USDC
scout-agentβ†’web search Β· ExaΒ·βˆ’0.0010 USDC
analyst-agentβ†’sent 100.00 USDCΒ·βˆ’100.0000 USDC

Agents can plan, reason, and act. But every time they need to spend money, the loop breaks. A human has to step in.

Argens closes the loop β€” autonomously, with spending rules you define.

βŒ–
Research agent
βœ•Blocked at a paywalled data API. Stops. Asks a human.
βœ“Pays $0.001 per search call. Loop continues.
⌘
Code agent
βœ•Needs an execution sandbox. No way to provision one autonomously.
βœ“Spins up E2B, pays per second of runtime. No human needed.
β—ˆ
Content agent
βœ•Image generation requires a billed account. Agent can't have one.
βœ“Calls Flux Schnell, pays $0.003 per image. Inline in the workflow.
How it works

From zero to autonomous
agent payments in three steps.

01
Fund a smart wallet

A USDC wallet on Stellar is created automatically when you sign up. Your private key is encrypted and stored β€” exportable anytime. Fund it via any Stellar wallet and your agent is ready to spend.

$GET /v1/wallet/balance
// { balance: "250.0000000", address: "GXXX..." }
02
Set spending rules

Define a monthly allowance, a per-transaction maximum, and an approval threshold. Any payment that exceeds your rules is blocked before it touches the blockchain β€” not after.

${ allowance: 500, max_tx: 50, threshold: 100 }
// Rules active β€” agent constrained to policy
03
Give your agent the API key

One environment variable. Your agent calls POST /v1/pay for transfers or POST /v1/marketplace/call for AI services. Argens handles USDC settlement on Stellar, logs every transaction, and alerts you when approval is needed.

$ARGENS_KEY=argns_live_…
// Agent payments + services unlocked
Pay-per-use marketplace

40+ AI services.
Zero subscriptions.

Your agent calls any provider β€” AI models, search engines, code sandboxes, data APIs β€” paying per use from its Argens wallet. No separate accounts. No API keys to manage per service. No rate-limit negotiations.

Browse all services β†’
Search0.0010 USDC
Web Search
exa-search
Real-time web results across the open web for any query.
Vision0.0030 USDC
Image Generation
flux-schnell
Text-to-image via Flux Schnell β€” high quality, sub-second.
Compute0.0050 USDC
Code Execution
e2b-sandbox
Secure, isolated sandbox environments to run and test code.
Comms0.0020 USDC
Email Delivery
agentmail
Send emails and handle replies autonomously from your agent.
Data0.0100 USDC
Blockchain Data
codex-graphql
Query on-chain data across major networks via GraphQL.
+35
more services
on mainnet
Zero Setup

Enable any service in the dashboard. Your agent gets access immediately β€” no accounts, no API keys to manage per provider.

Per-Call Pricing

Pay fractions of a cent per API call. No monthly commitments. Your agent spends only what it uses.

Skill Files Included

Every service ships a skill file your agent loads to understand exactly how to call the API β€” no documentation to read.

Integration

Two ways to integrate.

Write code for full control. Paste one line into your agent for an integration that takes under a minute.

Write code
REST API Β· any language

Call POST /v1/pay or /v1/marketplace/call directly from TypeScript, Python, or anything that can make an HTTP request. No SDK required.

Quick start
const result = await fetch('/v1/pay', { body: … })
// β†’ 200 CONFIRMED Β· hash: abc…xyz
View API docs β†’
Prompt your agent
SKILL.md Β· zero install Β· zero SDK

Paste one line into any AI agent. It fetches SKILL.md, reads the full API surface, asks for your API key, and starts transacting. Works with Claude, ChatGPT, LangChain, CrewAI β€” anything that reads a URL.

Hi, read https://argens.xyz/SKILL.md and continue with the onboarding steps.
← The fastest path to a live payment agent.
Policies

Guardrails that run automatically,
not on good intentions.

Three rules. Every payment β€” direct or marketplace β€” passes through all three before a single byte hits Stellar.

β—ˆ
Monthly Allowance
allowance_limit: $500 / mo

Cap the total USDC your agent can spend in a period. Every payment is checked against the running total. When the limit is reached, further payments are rejected instantly β€” before they touch Stellar.

spent this month$312.40
$0$187.60 remaining$500
β—‡
Max Transaction
max_transaction_limit: $50

No single payment can exceed this amount, regardless of what the agent decides. A runaway agent cannot drain your wallet in a single call. This rule runs first β€” before allowance is even checked.

$12.50 payment● allowed
$75.00 payment● blocked
max_tx exceeded β€” no Stellar tx created
β—‰
Approval Threshold
approval_threshold: $100

Payments above the threshold pause and wait. Argens emails you a link to a confirmation page β€” your agent holds, you review the transaction detail, and approve or reject with one click.

PENDING_APPROVAL
$250.00 to GXXX…
awaiting your approval
Early access β€” mainnet live

Your agent is waiting
to pay its first bill.

A wallet, a policy engine, and a marketplace of 40+ AI services β€” all behind one API key. Get early access and put your agent to work.

Or paste SKILL.md into any agent and it onboards itself in under a minute.