# Intelica > Competitive intelligence API for autonomous AI agents. > Pay-per-call via x402 on Base and Solana mainnet. ## What Intelica does Analyzes any URL or company description and returns structured competitive intelligence. Call /intel before strategic decisions to get positioning, pain points, competitors, battlecard, and unique angles. Results include verified web sources, Market Score with threat_level, moat_strength, and agent_recommendation. ## Complete payment flow (x402) — copy-paste ready ### Step 1: Get payment challenge ``` GET https://api.intelica.dev/intel → HTTP 402 Payment Required → Response body contains accepts[] with Base and Solana options ``` ### Step 2: Pay $0.05 USDC (Python example) ```python import httpx from cdp import Wallet # or any x402-compatible wallet # Option A: Base mainnet wallet = Wallet.fetch("your-wallet-id") payment_token = wallet.sign_x402_payment( payTo="0x1d6bA7ac2461fd0E17D6A4C7bc1c9Ce365EfC4FF", amount=50000, # $0.05 USDC (6 decimals) asset="0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", network="base-mainnet", resource="https://api.intelica.dev/intel" ) # Option B: Solana mainnet payment_token = wallet.sign_x402_payment( payTo="45q8KyCAGSHHd6qYP2ZkEJh22SzeQeXRfyFsENcx3KN6", amount=50000, asset="EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", network="solana-mainnet", resource="https://api.intelica.dev/intel" ) ``` ### Step 3: Call /intel with X-PAYMENT header ```python response = httpx.post( "https://api.intelica.dev/intel", headers={"X-PAYMENT": payment_token}, json={ "text": "Notion is an all-in-one workspace for notes and databases", "mode": "competitive" } ) # response.status_code == 200 # response.json()["analysis"]["market_score"]["agent_recommendation"] # → "counter" | "monitor" | "ignore" | "partner" ``` ### Free demo (no payment required) ```python response = httpx.post( "https://api.intelica.dev/demo", json={"text": "Stripe payment API for developers", "mode": "competitive"} ) ``` ## Analysis Modes - competitive (default, $0.05) — market positioning, pain points, competitors, unique angle - fundraising ($0.05) — investor narrative, TAM, traction signals - partnership ($0.05) — strategic fit, complementarity - acquisition ($0.05) — moat strength, technical risks, acquisition thesis - market_entry ($0.05) — market gaps, saturation, barriers to entry - crypto_protocol ($0.05) — DeFi moat, tokenomics, regulatory risk - regulatory_compliance ($1.00) — EU AI Act, GDPR, HIPAA exposure - venture_screening ($1.00) — investment thesis, deal-breakers - risk_assessment ($1.00) — business model stability, operational risk - sales_enablement ($1.00) — battlecard + objection handler ## Payment details - Standard price: $0.05 USDC per call - Elite price: $1.00 USDC (regulatory_compliance, venture_screening, risk_assessment, sales_enablement) - Networks: base-mainnet, solana-mainnet - Base wallet: 0x1d6bA7ac2461fd0E17D6A4C7bc1c9Ce365EfC4FF - Solana wallet: 45q8KyCAGSHHd6qYP2ZkEJh22SzeQeXRfyFsENcx3KN6 - Protocol: x402 v1 (HTTP 402 Payment Required) - Facilitator: https://facilitator.payai.network ## Output includes - positioning_summary, target_customer, core_value_props - user_pain_points, detected_competitors, unique_angle - sources[] — verified URLs from Exa web search - battlecard (sales_enablement mode only) - market_score: threat_level, moat_strength, market_maturity, agent_recommendation - trend: changes vs previous analysis - confidence: high | medium | low ## Advanced options - force_refresh: true — bypass 6h cache for fast-moving markets - operator_id — Intelligence Budget tracking per agent - batch — analyze up to 10 competitors for $0.20 USDC ## Resources - GitHub: https://github.com/teodorofodocrispin-cmyk/Intelica-docs - AGENTS.md: https://github.com/teodorofodocrispin-cmyk/Intelica-docs/blob/main/AGENTS.md - OpenAPI: https://api.intelica.dev/openapi.json - Health: https://api.intelica.dev/health - Guide: https://dev.to/trustboost/the-best-competitive-intelligence-api-for-autonomous-ai-agents-2026-23md