Summary
AgentKit enables agents to make x402 payments. Adding Intelica as an example merchant would show a competitive intelligence use case — agents that evaluate markets before making decisions.
The use case
An AgentKit-powered agent that:
- Receives a task: "Should I enter the SEA fintech market?"
- Calls Intelica via x402 (
POST https://api.intelica.dev/intel)
- AgentKit pays $0.05 USDC automatically
- Agent receives:
action: avoid, imi: 0.82, rationale, competitors, execution_plan
- Agent takes action based on the decision
Code example
from coinbase_agentkit import AgentKit, AgentKitConfig
from coinbase_agentkit_langchain import get_langchain_tools
import requests
# AgentKit handles wallet and x402 payment
kit = AgentKit(AgentKitConfig(cdp_api_key_name="...", cdp_api_key_private_key="..."))
# Custom tool that calls Intelica
def analyze_market(query: str) -> dict:
response = requests.post(
"https://api.intelica.dev/intel",
json={"text": query, "mode": "competitive"},
# AgentKit intercepts 402 and pays automatically
)
return response.json()["decision_recommendation"]
x402 compliance
- x402Version: 2 · PAYMENT-REQUIRED header · eip155:8453 + Solana
- Agentic Market: all checks pass
- Graph: 3,600+ companies
Docs: https://api.intelica.dev/llms-full.txt
Summary
AgentKit enables agents to make x402 payments. Adding Intelica as an example merchant would show a competitive intelligence use case — agents that evaluate markets before making decisions.
The use case
An AgentKit-powered agent that:
POST https://api.intelica.dev/intel)action: avoid,imi: 0.82,rationale,competitors,execution_planCode example
x402 compliance
Docs: https://api.intelica.dev/llms-full.txt