Skip to main content

Market intel API

Retrieve real-time competitive landscape data, infrastructure health signals, and market opportunities.

Get market intelligence

GET /api/market-intel
No authentication required. Returns live competitor status checks, market signals from internal infrastructure health APIs, and strategic opportunity analysis.
Competitor status checks and infrastructure health probes each use a 5-second timeout. The total response time depends on how quickly external services respond.

Response

{
  "generatedAt": "2026-03-27T15:00:00.000Z",
  "competitors": [
    {
      "name": "Relevance AI",
      "url": "https://relevanceai.com",
      "description": "No-code agent builder targeting enterprise teams",
      "price": "$19–$599/mo",
      "status": "up",
      "responseMs": 342
    }
  ],
  "signals": [
    {
      "id": "infra-1",
      "text": "Agentbot infrastructure healthy — enabled provisioning, available Docker, railway provider",
      "source": "Agentbot Health API",
      "date": "2026-03-27",
      "sentiment": "pos"
    }
  ],
  "opportunities": [
    {
      "title": "DJ / Creative AI",
      "gap": "No competitor owns the music-creator segment",
      "action": "Double down on DJ Stream + $BASEFM ecosystem"
    }
  ]
}

Top-level fields

FieldTypeDescription
generatedAtstringISO 8601 timestamp when the response was generated
competitorsarrayLive status of tracked competitor platforms
signalsarrayMarket and infrastructure signals
opportunitiesarrayStrategic opportunity analysis

Competitor object

Each entry in the competitors array contains:
FieldTypeDescription
namestringCompetitor platform name
urlstringCompetitor website URL
descriptionstringBrief description of the competitor’s offering
pricestringPricing summary
statusstringLive availability: up, down, or unknown
responseMsnumber | nullResponse time in milliseconds, or null if the check failed

Tracked competitors

NameDescription
Relevance AINo-code agent builder targeting enterprise teams
Lindy.aiPersonal AI assistant with workflow automation
Beam.aiEnterprise AI agent platform
AgentGPTOpen-source autonomous agent runner
Dust.ttEnterprise AI workspace with custom assistants
CrewAIMulti-agent orchestration framework
AutoGen (Microsoft)Microsoft multi-agent conversation framework

Signal object

Each entry in the signals array contains:
FieldTypeDescription
idstringUnique signal identifier
textstringHuman-readable signal description
sourcestringSource of the signal (for example, Agentbot Health API, x402 Gateway, Tempo x402 Soul)
datestringDate of the signal in YYYY-MM-DD format
sentimentstringSignal sentiment: pos, neg, or neutral

Infrastructure signals

The endpoint probes the following internal services and includes their status as signals when available:
Signal IDSourceDescription
infra-1Agentbot Health APIAgentbot backend health including provisioning, Docker, and provider status
x402-1x402 Gatewayx402 payment gateway operational status
soul-1Tempo x402 SoulAutonomous soul agent status including version and soul state
Infrastructure signals are only included when the corresponding service responds within the 5-second timeout. Missing signals indicate the service was unreachable.

Opportunity object

Each entry in the opportunities array contains:
FieldTypeDescription
titlestringOpportunity area name
gapstringIdentified market gap
actionstringRecommended strategic action

Example request

curl -X GET https://agentbot.sh/api/market-intel

Example response

{
  "generatedAt": "2026-03-27T15:16:53.000Z",
  "competitors": [
    {
      "name": "Relevance AI",
      "url": "https://relevanceai.com",
      "description": "No-code agent builder targeting enterprise teams",
      "price": "$19–$599/mo",
      "status": "up",
      "responseMs": 342
    },
    {
      "name": "Lindy.ai",
      "url": "https://lindy.ai",
      "description": "Personal AI assistant with workflow automation",
      "price": "$29–$299/mo",
      "status": "up",
      "responseMs": 518
    },
    {
      "name": "CrewAI",
      "url": "https://crewai.com",
      "description": "Multi-agent orchestration framework",
      "price": "Free / Enterprise",
      "status": "up",
      "responseMs": 210
    }
  ],
  "signals": [
    {
      "id": "infra-1",
      "text": "Agentbot infrastructure healthy — enabled provisioning, available Docker, railway provider",
      "source": "Agentbot Health API",
      "date": "2026-03-27",
      "sentiment": "pos"
    },
    {
      "id": "x402-1",
      "text": "x402 payment gateway operational — on-chain API monetization live on Base",
      "source": "x402 Gateway",
      "date": "2026-03-27",
      "sentiment": "pos"
    },
    {
      "id": "market-1",
      "text": "AI agent market projected to reach $45B by 2028 — autonomous agent adoption accelerating across enterprises",
      "source": "Gartner",
      "date": "2026-03-12",
      "sentiment": "pos"
    }
  ],
  "opportunities": [
    {
      "title": "DJ / Creative AI",
      "gap": "No competitor owns the music-creator segment",
      "action": "Double down on DJ Stream + $BASEFM ecosystem"
    },
    {
      "title": "Wallet-native Auth",
      "gap": "Competitors rely on email auth only",
      "action": "SIWE + Base smart wallet is a genuine moat"
    },
    {
      "title": "UK Market Pricing",
      "gap": "Most competitors price USD only — GBP adoption friction",
      "action": "GBP pricing already live — lean into UK marketing"
    },
    {
      "title": "x402 Payments",
      "gap": "No competitor offers on-chain API payment settlement",
      "action": "x402 gateway is a unique differentiator — expand ecosystem"
    }
  ]
}

Errors

CodeDescription
200Market intelligence data returned successfully