一键导入
pinion-chat
Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
On-chain intelligence, transactions and wallet tools on Base. 9 x402-paywalled skills at $0.01 USDC each.
Get current USD price for any token on Base via Birdeye (CoinGecko fallback). Costs $0.01 USDC via x402.
Sign and broadcast an unsigned transaction on Base. Requires the sender's private key. Costs $0.01 USDC via x402.
Get ETH and USDC balances for any Ethereum address on Base. Costs $0.01 USDC via x402.
Check wallet balances and get funding instructions for Base. ETH and USDC. Costs $0.01 USDC via x402.
Construct an unsigned ETH or USDC transfer transaction on Base. Client signs and broadcasts. Costs $0.01 USDC via x402.
| name | pinion-chat |
| description | Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402. |
Send messages to the Pinion AI agent and get a response. The agent knows about the Pinion protocol, x402, OpenClaw, ERC-8004 and on-chain topics. It has web search for current information.
POST https://pinionos.com/skill/chat
Price: $0.01 USDC per call (x402 on Base)
{
"messages": [
{ "role": "user", "content": "what is x402?" }
]
}
| Field | Type | Required | Description |
|---|---|---|---|
| messages | array | yes | Array of { role, content } message objects |
Roles: user or assistant. Send conversation history for multi-turn chat.
curl -X POST https://pinionos.com/skill/chat \
-H "Content-Type: application/json" \
-d '{"messages":[{"role":"user","content":"what is x402?"}]}'
The first request returns HTTP 402 with payment requirements. Sign a USDC TransferWithAuthorization (EIP-3009) and retry with the X-PAYMENT header.
{
"response": "x402 is a protocol that brings the HTTP 402 Payment Required status code to life..."
}