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.

Sign up →

Have an access code? Sign up directly →

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-agentweb search · Exa·0.0010 USDC
claude-3-agentsent 25.00 USDC·25.0000 USDC
gpt-4o-agentimage gen · Flux Schnell·0.0030 USDC
dev-agentcode sandbox · E2B·0.0050 USDC
mailer-agentemail delivery · AgentMail·0.0020 USDC
quant-agentblockchain data · Codex·0.0100 USDC
writer-agentsent 5.00 USDC·5.0000 USDC
content-agentimage gen · Flux Schnell·0.0030 USDC
scout-agentweb search · Exa·0.0010 USDC
analyst-agentsent 100.00 USDC·100.0000 USDC
research-agentweb search · Exa·0.0010 USDC
claude-3-agentsent 25.00 USDC·25.0000 USDC
gpt-4o-agentimage gen · Flux Schnell·0.0030 USDC
dev-agentcode sandbox · E2B·0.0050 USDC
mailer-agentemail delivery · AgentMail·0.0020 USDC
quant-agentblockchain data · Codex·0.0100 USDC
writer-agentsent 5.00 USDC·5.0000 USDC
content-agentimage gen · Flux Schnell·0.0030 USDC
scout-agentweb search · Exa·0.0010 USDC
analyst-agentsent 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.

CCTP V2 · LIVE ON MAINNET

Pay any Base address.
From Stellar, in one call.

Argens auto-routes 0x... recipients via Circle CCTP V2. Burn on Stellar, mint natively on Base — no bridge, no wrapping, one API call. 0.5% fee · min $0.05 · max $2.

Stellar
Burn USDC
$
Circle CCTP V2
Iris Attestation
~8–20 seconds
Base
Mint USDC
native USDC
One request. Argens handles the rest.
POST /v1/pay → Base via CCTP
// G... = Stellar  ·  0x... = Base (auto)
await fetch('/v1/pay', {
  body: JSON.stringify({
    recipient: "0xABC...Base",
    amount:    "25.0000000",
  })
});
200 { status: "cross_chain_pending", stellar_tx_hash: "a3f9...", poll_url: "/v1/transactions/..." }
No bridges
Circle CCTP V2 burns on Stellar and mints on Base. Native USDC only — no synthetic assets, no wrapped tokens.
Zero config
Pass any 0x... address to POST /pay. Chain detection is automatic — no extra params needed.
~8–20 seconds
Fast Transfer on CCTP V2. Argens uses Fast Transfer by default for near-instant cross-chain settlement.
0.5% fee · capped
Cross-chain fee is 0.5% of amount, min $0.05, max $2.00 USDC. Direct Stellar payments remain $0 fee.
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
Built with Argens

Products shipping
on Argens

Developers are already wiring agents to pay for real work. Here's what they're building.

Ophunt
AI Agent
Ophunt logo
Ophunt

OpHunt agent fixes the front end of the founder pipeline. Paste any URL, a Reddit thread where people are venting, a Product Hunt launch with frustrated comments, a blog post about a niche problem, and OpHunt reads it, extracts the unmet need hiding inside it, and hands you a structured brief: the gap, the target user, the MVP scope, and a path to your first 100 customers. OpHunt also runs a live idea feed, monitoring Reddit, HN, Product Hunt, and tech news 24/7

ophunt.xyz
  • Web scraping via firecrawl_scrape.
  • LLM analysis via DeepSeek endpoint.
  • structured idea extraction from any URL or topic.
  • automated feed pipeline scoring ideas from HN, Reddit, and Product Hunt.
  • runtime service discovery via /marketplace/services.
  • pay-per-call AI spend across all analysis workloads.
Camob Residences
Real Estate
Camob Residences logo
Camob Residences

Camob Residence is a Next.js short-let booking site for a two-maisonette property in Lekki. Lagos It features four on-site AI agents, powered through Argens: a guest concierge that answers stay and neighbourhood questions; a pre-arrival itinerary generator that writes a personalised day-by-day plan after payment confirms; an admin operations co-pilot that drafts daily digests (pending bank transfers, refund candidates, guest replies); and a weekly market-positioning brief that pulls real Lagos events and drafts outreach plans and ad-copy starters for the owner's inbox

camobresidences.com
  • Chat completions via deepseek_deepseek_chat.
  • web search via brave_brave_web-search for the weekly events brief.
  • agent mail via stableemail_send for outbound delivery.
  • all routed through one shared client with spending caps and per-call AgentRun audit rows
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. Request access and put your agent to work.

Sign up →

Have a code? Sign up directly · No code? Join the waitlist above.