Pay-per-request access to any service for AI agents, over the open x402 protocol. Declare an intent, discover a provider, and settle on-chain with a single signature.
Project description
agent-intent-protocol
Pay-per-request access to any service, for AI agents — over the open x402 protocol.
Declare what you want, discover who provides it, and pay for the
request on-chain with a single signature. No accounts, no API keys, no
platform lock-in. Your agent carries a wallet; the service quotes a
price with HTTP 402 Payment Required; the client signs and settles.
Because payment speaks the open x402 standard, the same client works
against any compliant gateway.
- No accounts, no API keys — a wallet is the only credential.
- Single-signature payments — sign an EIP-3009 authorization; the gateway settles on-chain, no gas from your side.
- Vendor-neutral — the same client works against any x402-compliant gateway; nothing here is tied to one platform.
- Offline-verifiable receipts — every settlement can return an AIR/1 receipt that anyone can verify without trusting the issuer.
- Base and Solana —
secp256k1/EIP-191 for EVM chains,ed25519for Solana. On EVM, payments sign EIP-712 (EIP-3009) and receipts sign EIP-191, from the same key.
pip install agent-intent-protocol
Jump straight to runnable examples, or read on for the guided tour.
Quick start
Give the client a wallet and it settles 402 challenges automatically —
sign the payment, retry the request, return the result.
from agent_intent_protocol import AIPClient, Wallet, IntentType
wallet = Wallet(private_key="0x...") # your agent's EVM key
with AIPClient(wallet=wallet, endpoint="https://api.example.com") as client:
# Resolve an intent to the best-ranked provider. If the gateway
# answers 402, the wallet pays and the call transparently retries.
result = client.resolve(
IntentType.CHAT_COMPLETION,
constraints={"max_price_usd": 0.01},
preferences={"optimize_for": "cost"},
)
best = result.best_match
print(f"{best.provider_id} · {best.model} · score={best.score}")
The private key can also be supplied via the AIP_WALLET_KEY
environment variable, in which case Wallet() needs no arguments.
How payment works
x402 turns HTTP 402 Payment Required into a usable payment step:
- The client makes a normal request.
- If payment is due, the gateway replies
402with the accepted terms (amount, asset, recipient, network) in the body. - The wallet signs an EIP-3009
TransferWithAuthorizationfor those exact terms — an EIP-712 typed signature, no gas, no on-chain transaction from your side. - The client retries with a
PAYMENT-SIGNATUREheader. The gateway verifies and settles on-chain, then serves the response.
Payments default to USDC on Base (eip155:8453); the network and asset
come from the gateway's 402 terms, so the wallet always signs exactly
what it is asked to pay.
Resolve, then execute
resolve returns ranked matches so you can inspect price and score
before committing. execute resolves and runs the intent in one call,
proxying the provider response back:
response = client.execute(
IntentType.CHAT_COMPLETION,
payload={"messages": [{"role": "user", "content": "Hello"}]},
preferences={"optimize_for": "quality"},
)
Natural-language intents
Let the gateway interpret a free-form request. It may resolve directly or reply with a clarifying question for a multi-turn exchange:
reply = client.resolve_natural("I need to transcribe an audio file cheaply")
if reply.get("status") == "clarify":
print(reply["message"]) # follow-up question
else:
print(reply["matches"]) # resolved providers
Discovery
# Every intent type the gateway understands.
client.list_intent_types()
# Providers available for a given intent.
client.discover(intent_type=IntentType.IMAGE_GENERATION)
# The full provider catalogue.
client.list_providers()
Intent types
chat_completion, image_generation, video_generation,
text_to_speech, web_search, knowledge_search,
prompt_optimization, document_processing, utility,
code_execution, data_analysis, translation, code_generation.
Errors
All exceptions derive from AIPError:
AIPConnectionError— the request never reached the gateway.AIPAuthError—401/403, missing or invalid credentials.AIPPaymentRequiredError—402, payment required and no wallet was configured (or the payment was rejected).AIPAPIError— any other non-2xx response (status_code,detail,body).
WalletError is raised when a 402 challenge cannot be signed (missing
key, malformed terms).
Offline-verifiable receipts
When a request settles, the gateway can return an AIR/1 receipt — a self-certifying record that a named provider fulfilled the request and it was paid for on-chain. The point: anyone can verify it without trusting the party that issued it. No callback to the issuer, no shared secret, just the receipt bytes and public-key math.
from agent_intent_protocol import verify_receipt
result = verify_receipt(receipt, intent=intent, result=response)
if result.valid:
print("verified — signed by", result.signer)
Verification recomputes the intent and result hashes, checks the
signature against the signer's public key, and rejects any tampering.
Two signature suites are supported: secp256k1/EIP-191 for EVM chains
like Base (the same key type that signs x402 payments) and ed25519
for Solana. On EVM the two roles use different envelopes over the same
key: x402 payments sign an EIP-712 typed message (EIP-3009), while
receipts sign a simpler EIP-191 personal message. See
examples/04_offline_receipt.py
for an end-to-end, network-free demo.
Protocol
The intent wire format and endpoint contract are defined in the Agent Intent Protocol specification. The payment layer follows the open x402 protocol.
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 agent_intent_protocol-0.3.0.tar.gz.
File metadata
- Download URL: agent_intent_protocol-0.3.0.tar.gz
- Upload date:
- Size: 87.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8667a157a037632fa09964729cbaa0a0fd3b852cdc89d8b9c114135ea81a9eb6
|
|
| MD5 |
6147d70fee2e015caf745a5c8bb032d6
|
|
| BLAKE2b-256 |
35c7b3a1fb0f5f27259a9848b94a7304ace2225fc5ebecf69d919d7428cbbf3c
|
File details
Details for the file agent_intent_protocol-0.3.0-py3-none-any.whl.
File metadata
- Download URL: agent_intent_protocol-0.3.0-py3-none-any.whl
- Upload date:
- Size: 23.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf886bb6e38c570822087484555b33db43fae3f79ca0ccf3ae5061b981cf9970
|
|
| MD5 |
0f1db53d5a039b8f4d6b7ed8ba34847e
|
|
| BLAKE2b-256 |
aebf34c7217a76cd9e6f56183befd1744c4cb9b56f7546eee066045d30a102d9
|