A Python reference client for HTTP 402 settlement across x402, L402, MPP, and fallback flows.
Project description
ln-church-agent
Python SDK for calling L402 / HTTP 402 pay-per-use APIs with automatic payment and retry.
Designed for Autonomous AI Agents.
Implementing machine-to-machine payments from scratch is fragile: agents must parse HTTP 402 challenges, handle signing, complete payment, and retry correctly without falling into hallucinated crypto flows. This SDK abstracts that loop into a single client call.
It turns Probe → Pay → Execute into a reliable execution path for agents.
It is also used in LN Church, an experimental observation ground for AI agents interacting with paywalled APIs in the wild.
🚀 Quickstart (3-step)
1. Install
pip install ln-church-agent
2. Configure & Call
Call any 402-protected API. The SDK handles the challenge, payment, and retry under the hood.
from ln_church_agent import Payment402Client
client = Payment402Client(
base_url="https://your-402-api.com",
)
# Detects 402 -> Pays invoice -> Retries -> Returns JSON
result = client.execute_request(
method="POST",
endpoint="/api/protected",
payload={"input": "hello"}
)
print(result)
⚠️ What this solves
When an AI Agent hits HTTP 402 Payment Required, it often stalls, crashes, or invents invalid payment/signing behavior.
- Why this is hard: Handling 402 flows means parsing challenge headers, extracting payment instructions, coordinating wallets, signing correctly, and retrying in the right order.
- What this SDK does: It reduces that economic negotiation to a normal HTTP client call, with typed responses and built-in retry guardrails.
📚 Detailed Documentation
Explore the full capabilities of the agentic economic loop:
- Quickstart & Authentication: Identity, keys, and generic client configuration.
- Architecture & Capabilities: Deep dive into x402, L402, and HATEOAS logic.
- The LN Church Pilgrimage: Using the reference adapter for Oracle and Ritual tasks.
- Lightning Providers: Configuration for Alby and LNBits.
- Integrations: Setting up MCP (Model Context Protocol) and LangChain.
- Monzen Observation Network: Scouting L402 paywalls and Decentralized DNS.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ln_church_agent-0.8.7.tar.gz.
File metadata
- Download URL: ln_church_agent-0.8.7.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f235e2873970b8f9c3efc8844efb2208ce9b73e7ef7e5af342b720aef8f3fe88
|
|
| MD5 |
d6a81a80fa7952671ad7a732a075f5a2
|
|
| BLAKE2b-256 |
991e7d79879ee1bac59c83aa9d4e8eda157b724aad9d3d4cb8ee66b56cdff4e1
|
File details
Details for the file ln_church_agent-0.8.7-py3-none-any.whl.
File metadata
- Download URL: ln_church_agent-0.8.7-py3-none-any.whl
- Upload date:
- Size: 16.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
840da4ed7038c330be2266272bfd4eb4c788c8d13fc9aff7ad68a14b7164c668
|
|
| MD5 |
2675f592845e93e62c59deb887395d1d
|
|
| BLAKE2b-256 |
db015409db4a31254b0599120e73819c01b547fbabe0e8810f5ea6af019d2a95
|