Fetch raw ad creative, app, ranking, and revenue data from AdMapix as structured JSON.
Integrations
Intelica — Competitive Intelligence
Try itGet structured competitive intelligence JSON for any named company, with market score and cited sources.
What it does
Intelica accepts a URL or short company description and returns structured JSON covering positioning, target customer, pain points, detected competitors, battlecard content, cited sources, and a market score with an agent_recommendation field (monitor, counter, partner, acquire, etc.). Calls are priced per request via x402 on Base and Solana mainnets — $0.05 USDC for standard modes, $1.00 for elite modes, $0.20 for batches of up to 10. A free trial key covers the first 5 calls without a wallet, and identical companies reuse the same cached result for 6 hours.
When to use it
- Pre-demo battlecard for a specific named prospect
- DeFi protocol risk check before entering a position
- VC-style investment thesis on a specific startup
- Market entry scan for a new geography
The skill document
Intelica — Competitive Intelligence Skill
⚠️ DATA PRIVACY NOTICE: This skill sends the provided company name, URL, description, and context to the Intelica API (api.intelica.dev), a third-party service. Do NOT submit confidential business plans, proprietary strategy, regulated data (HIPAA, GDPR-sensitive), or personally identifiable information. Use only for publicly available companies and markets. Paid calls ($0.05–$1.00 USDC) are made autonomously when a payment method is configured — set budget controls before enabling autonomous use.
Intelica returns structured competitive intelligence for a specific named company or market. Invoke only when the agent has a clear, scoped target and the user has approved external data submission.
When to use
- Agent needs competitor analysis on a specific named company before a strategic decision
- Founder needs a market entry report for a specific new geography
- Agent is evaluating a specific DeFi protocol before entering a position
- Sales agent needs a battlecard for a specific upcoming demo
- VC agent screening a specific investment opportunity
- Compliance officer evaluating regulatory risk for a specific company or product
When NOT to use
- General market questions without a specific named target
- Internal strategy or confidential business planning
- Regulated or sensitive data (medical records, financial PII, legal documents)
- When local reasoning or public knowledge is sufficient
- Without explicit user approval for third-party data submission
Budget controls (important for autonomous agents)
- Standard analysis: $0.05 USDC per call
- Elite analysis: $1.00 USDC per call
- Batch (up to 10): $0.20 USDC
- Always use
/demo(free) to validate before enabling paid autonomous calls - Set
operator_idto enforce daily budget limits per pipeline - Results cached 6 hours — same company twice costs once
How to call
Step 0 — Get free trial key (no wallet needed)
GET https://api.intelica.dev/api-keys/trial
→ {"key": "ikey_trial_...", "calls_remaining": 5, "expires_at": "..."}
# Use immediately — extract response.key and pass as X-API-KEY header
Step 1 — Free demo (no payment, no key)
POST https://api.intelica.dev/demo
Content-Type: application/json
{
"text": "Notion is an all-in-one workspace for teams",
"mode": "competitive"
}
Step 2 — Full analysis with trial key
POST https://api.intelica.dev/intel
X-API-KEY: ikey_trial_...
Content-Type: application/json
{
"text": "Notion is an all-in-one workspace for teams",
"mode": "competitive"
}
Step 3 — Full analysis with x402 payment
POST https://api.intelica.dev/intel
Content-Type: application/json
{
"url": "https://notion.so",
"mode": "competitive",
"context": "I'm building a note-taking app for developers"
}
# Returns HTTP 402 with Base + Solana payment options
# After payment, retry with X-PAYMENT header
Step 4 — Batch (up to 10 analyses for $0.20)
POST https://api.intelica.dev/batch
X-PAYMENT:
Content-Type: application/json
{
"items": [
{ "url": "https://notion.so", "mode": "competitive" },
{ "text": "Coda collaborative doc platform", "mode": "acquisition" }
]
}
Context Modes
| Mode | Price | Use when |
|---|---|---|
competitive | $0.05 | Standard competitor analysis (default) |
fundraising | $0.05 | Investor narrative, TAM, traction signals |
partnership | $0.05 | Strategic fit — complement or rival? |
acquisition | $0.05 | Due diligence — moat, technical risk |
market_entry | $0.05 | Market gaps, saturation, barriers to entry |
crypto_protocol | $0.05 | DeFi moat, tokenomics, regulatory risk |
market_entry_execution | $1.00 | Execution plan — partners, budget, week-1 actions |
venture_screening | $1.00 | Investment thesis + deal-breakers |
regulatory_compliance | $1.00 | EU AI Act, GDPR, HIPAA exposure |
risk_assessment | $1.00 | Business model stability, operational risk |
sales_enablement | $1.00 | Battlecard + objection handler |
Response trust protocol (M2M)
The response includes root-level fields for programmatic trust validation:
{
"sources": ["url1", "url2"],
"confidence": "high | medium | low",
"market_score": {
"threat_level": "high | medium | low",
"moat_strength": 0.72,
"agent_recommendation": "monitor | counter | partner | acquire"
},
"analysis": { ... }
}
Agent decision pipeline:
- Check
sources[]— if fewer than 2 URLs, treat confidence as low - Check
confidence— if low, do not execute autonomous actions - Check
market_score.agent_recommendation— use as primary action signal - Read
analysis{}for full context
Output fields
{
"analysis": {
"company_or_product": "string",
"positioning_summary": "string",
"target_customer": "string",
"core_value_props": ["string"],
"user_pain_points": ["string"],
"detected_competitors": ["string"],
"unique_angle": "string",
"confidence": "high | medium | low",
"sources": ["url1", "url2", "url3"],
"market_score": {
"threat_level": "high | medium | low",
"moat_strength": 0.0,
"market_maturity": "emerging | growing | mature | declining",
"agent_recommendation": "monitor | counter | ignore | partner"
}
},
"model": "claude-sonnet-4-6 | claude-haiku-4-5-20251001",
"tier": "elite | standard",
"mode": "string",
"detected_language": "en | es | pt | de | fr | it | ja | ko | zh"
}
Payment details
- Networks: Base mainnet + Solana mainnet
- Standard: $0.05 USDC / Elite: $1.00 USDC / Batch: $0.20 USDC
- Trial: GET /api-keys/trial — 5 free calls, no wallet required
- x402 manifest: https://api.intelica.dev/.well-known/x402.json
Links
- Live API: https://api.intelica.dev
- OpenAPI: https://api.intelica.dev/openapi.json
- Full reference: https://api.intelica.dev/llms-full.txt
- Try: https://teodorofodocrispin-cmyk.github.io/Intelica-docs/try.html
Questions people ask
- How is confidence scored?
- The response includes a confidence field (high/medium/low) and a sources[] array. The documented trust protocol requires at least 2 source URLs to treat confidence as higher; low confidence should block autonomous actions.
- What does it cost?
- Standard modes (competitive, fundraising, partnership, acquisition, market_entry, crypto_protocol) are $0.05 USDC per call; elite modes (market_entry_execution, venture_screening, regulatory_compliance, risk_assessment, sales_enablement) are $1.00. Batches of up to 10 cost $0.20. Settlement is x402 on Base or Solana mainnet, and a trial key gives 5 free calls without a wallet.
- Is submitted data private?
- Inputs are sent to api.intelica.dev, a third-party service. The skill is intended for publicly known companies only — do not submit confidential strategy, proprietary information, or regulated data such as HIPAA, GDPR, or financial PII.
Related skills
Join a video meeting as an AI bot with voice, avatar, and screenshare across four operating modes.
Stores durable facts in a categorized, plain-markdown vault on disk, alongside your agent's built-in memory.
Generate and edit Draw.io, Mermaid, and Excalidraw diagrams from natural language using a structured JSON spec.
Site audit, content writing, and competitor analysis for organic search rankings.
Find why your productivity system keeps failing, then apply the smallest fix — capacity math, bottleneck routing, durable local notes.
More from teodorofodocrispin-cmyk
Browse all skillsRedact PII from text before sending it to an LLM, via a single HTTPS POST — pay per request on Solana or use the 50-request TRIAL.
Sanctions screening (OFAC+UN+EU+UK, 59k entries), KYB bundles for CO/MX/BR/CL/PE, LATAM central bank rates (TRM/TIIE/Selic/dólar blue), business registry lookup and AI market intelligence. x402 v2 micropayments in USDC — no API key, no account. Trial: X-TRIAL: true header.
Pre-execution transaction safety check for autonomous AI agents from the SENTINEL trust oracle (sentinel-agent.dev). Before signing an on-chain transaction on Base, an agent gets a SAFE / UNSAFE / UNKNOWN verdict, a SENTINEL Score (0-100, AAA-D), and an ed25519-signed receipt. Pay-per-call via x402.