Argentic is a Lightning-based toll booth service that allows AI scraping agents to pay for web access using Bitcoin Lightning for frictionless machine-to-machine payments.
# ARGENTIC.NETWORK — Lightning Toll Booth for AI Agents
Source: [https://argentic.network/](https://argentic.network/)
▶ SYSTEM ONLINE // TOLL BOOTH ACTIVE
Lightning Infrastructure for AI Agents
The internet's first**machine\-native toll booth**\. AI agents pay in Bitcoin Lightning to access the open web\. No accounts\. No API keys\. No friction\. Just**sats and passage**— at the speed of light\.
<40
Millisecond settlement
// Protocol
## How Agents Pay
01
Request
Agent hits argentic\.network with any request\. Toll booth intercepts it\.
02
Invoice
Server returns HTTP 402 with a Lightning invoice for 10 sats \(~$0\.001\)\.
03
Pay
Agent pays the invoice automatically via Lightning Network\. Settlement in milliseconds\.
04
Access
Agent receives a session token valid for 1 hour\. Include it in all future requests\.
05
Pass
All requests with valid token are forwarded through\. No friction\. No delays\.
// Integration
## Agent Code Examples
Step 1 — Request access \(get invoice\)
```
response = requests.get("https://argentic.network/?url=https://target-site.com")
data = response.json()
invoice = data["invoice"]
payment_hash = data["payment_hash"]
```
Step 2 — Pay invoice via your Lightning node
```
pay_response = requests.post(
"http://your-lightning-node/pay",
data={"invoice": invoice}
)
```
Step 3 — Poll for token after payment
```
token_response = requests.get(
"https://argentic.network/",
headers={"X-Payment-Hash": payment_hash}
)
token = token_response.json()["token"]
```
Step 4 — Use token for all subsequent requests
```
result = requests.get(
"https://argentic.network/?url=https://target-site.com",
headers={"X-Lightning-Token": token}
)
data = result.json()
```
// Economics
## Pricing
10
Satoshis per session
~$0\.001 USD at current rates\. One payment buys 1 hour of unrestricted access\. No subscriptions\. No accounts\. Pay and go\.
Designed for machine\-to\-machine payments\. So cheap no agent will refuse it\. So fast no agent will notice it\. The path of least resistance through the internet\.
Lightning Labs released a toolkit enabling AI agents to make autonomous micropayments via Bitcoin Lightning Network using the L402 protocol, solving the identity and cost barriers of traditional payment methods.
A tutorial on building an autonomous AI agent on a $15 RISC-V device (LicheeRV Nano) that can manage its own Lightning Network wallet and make autonomous Bitcoin payments via Nostr.
An open-source tool that enables AI agents to make Bitcoin Lightning payments with hard spending caps enforced server-side, preventing abuse even under prompt injection. Includes an MCP server for Claude Desktop/Cursor integration and Python/TypeScript SDKs.
The article describes a test of an AI-powered site for verifying B2B payments, which provides machine-readable risk assessments and decisions to agents for a small fee.
The article highlights OpenAI's publication on x402 as a key payment layer for AI agents, with major companies like AWS, Coinbase, and Stripe adopting it, while emphasizing the scalability challenges that require automated trust-scoring solutions.