Agnic Features
Agnic Features
Wallet, balance, transactions, CLI, and integrations around the X402 rail.
Agnic Features
Agnic provides the wallet, limits, logging, and tooling that sit around the X402 payment rail. For the X402 protocol itself and the endpoints that move money — /api/x402/fetch and /api/sign-payment — see the X402 section.
Overview
| Feature | Endpoint | Description |
|---|---|---|
| Balance | GET /api/balance | Check wallet USDC balance |
| Transactions | GET /api/transactions | View transaction history |
| Agent Email | see docs | Email inbox for your agent |
| MCP Server | see docs | Model Context Protocol server for agents |
| CLI | agnic | Command-line interface |
Base URL
https://api.agnic.aiAuthentication
All endpoints require authentication via API token or OAuth2:
# API Token
curl https://api.agnic.ai/api/balance \
-H "X-Agnic-Token: agnic_tok_YOUR_TOKEN"
# OAuth2 Token
curl https://api.agnic.ai/api/balance \
-H "Authorization: Bearer agnic_at_YOUR_OAUTH_TOKEN"Quick Start
1. Check Your Balance
curl https://api.agnic.ai/api/balance \
-H "X-Agnic-Token: agnic_tok_YOUR_TOKEN"2. View Transaction History
curl https://api.agnic.ai/api/transactions \
-H "X-Agnic-Token: agnic_tok_YOUR_TOKEN"3. Make a Paid Request
See X402 Fetch for the one-call proxy that handles payment end-to-end.
Features
X402
The payment protocol, fetch proxy, and manual signing
Balance
Check your wallet balance across networks
Transactions
View and search transaction history
CLI Tool
Command-line interface for wallet operations
AI Agent Skills
Pre-built skills for AI assistants
API Tokens
Generate and manage API tokens via dashboard