{"for_the_agent":{"summary":"You reached Intelica — a competitive intelligence API. You need to pay $0.05 USDC to get a response. This is an x402 micropayment.","what_happened":"You received HTTP 402 Payment Required. This means you need to include a signed USDC payment in the X-PAYMENT header and retry the request.","can_you_pay_now":"Only if your runtime has an x402-compatible client and a funded EVM or Solana wallet. If not, tell your developer — instructions below.","free_alternative":"GET https://api.intelica.dev/api-keys/trial returns a trial key with 5 free calls. Use X-API-KEY: <key> header — no wallet needed."},"for_the_developer":{"summary":"Your agent tried to use Intelica but couldn't complete the x402 payment. Here's how to enable autonomous payments.","what_is_x402":"x402 is an open HTTP payment protocol. When your agent hits a paid API, it receives 402 with payment details, pays on-chain, and retries automatically — no subscriptions, no API keys.","quickstart_nodejs":{"install":"npm install @x402/fetch @x402/evm viem","code":"import { wrapFetchWithPayment, x402Client } from '@x402/fetch';\nimport { registerExactEvmScheme } from '@x402/evm/exact/client';\nimport { privateKeyToAccount } from 'viem/accounts';\n\nconst signer = privateKeyToAccount(process.env.EVM_PRIVATE_KEY);\nconst client = new x402Client();\nregisterExactEvmScheme(client, { signer });\nconst fetchWithPayment = wrapFetchWithPayment(fetch, client);\n\n// Now your agent pays automatically on 402\nconst response = await fetchWithPayment('https://api.intelica.dev/intel', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json' },\n  body: JSON.stringify({ text: 'your company or market description', mode: 'competitive' })\n});","wallet_setup":"Fund your EVM wallet with USDC on Base (eip155:8453). Each analysis costs $0.05 USDC."},"quickstart_python":{"install":"pip install x402","code":"from x402.clients.httpx import x402HttpxClient\nfrom eth_account import Account\nimport os\n\naccount = Account.from_key(os.getenv('EVM_PRIVATE_KEY'))\nasync with x402HttpxClient(account=account, base_url='https://api.intelica.dev') as client:\n    response = await client.post('/intel', json={'text': 'your market description', 'mode': 'competitive'})\n    data = response.json()"},"networks_supported":{"base":{"network":"eip155:8453","asset":"USDC — 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","pay_to":"0xCf1d31020A7915421f6d66B9835Dcb6f422337E7","price":"$0.05 USDC per analysis"},"solana":{"network":"solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp","asset":"USDC — EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v","pay_to":"45q8KyCAGSHHd6qYP2ZkEJh22SzeQeXRfyFsENcx3KN6","price":"$0.05 USDC per analysis"}},"no_wallet_option":{"description":"Use a session key — pay once with USDC on Solana and get 30 or 100 reports.","plans":{"starter":"$15 USDC / 30 reports / 10 days","pro":"$30 USDC / 100 reports / 30 days"},"activate":"POST https://api.intelica.dev/access/activate with { plan, tx_hash }"},"trial":{"description":"5 free calls with no wallet required.","get_key":"GET https://api.intelica.dev/api-keys/trial","use_key":"Add header X-API-KEY: <your_trial_key> to POST /intel requests"}},"api_reference":{"main_endpoint":"POST https://api.intelica.dev/intel","request_body":{"text":"Company or market description (50+ words recommended)","mode":"competitive (default, $0.05) | venture_screening | market_entry_execution | regulatory_compliance | risk_assessment | sales_enablement ($1.00 each)","auto_execute":"boolean — if true and action=monitor, auto-subscribes to IMI alerts at $0.01/alert","webhook_url":"URL for Pulse alerts when auto_execute=true"},"response_fields":{"decision_recommendation.action":"enter | avoid | monitor | acquire | partner","decision_recommendation.confidence_score":"0.0-1.0 — data richness signal","intelica_moat_index":"0.0-1.0 — structural moat strength vs 3,600+ companies","detected_competitors":"list of real competitors found","execution_plan.non_obvious_insight":"the insight that changes everything","execution_plan.week_1_actions":"immediate next steps"},"docs":"https://api.intelica.dev/llms-full.txt","openapi":"https://api.intelica.dev/openapi.json","mcp_server":"https://api.intelica.dev/mcp"}}