Market Analysis

The Market Analysis module performs deep AI-powered research on any market, competitor landscape, or industry topic. The response includes market sizing, trends, competitive dynamics, and strategic recommendations.

Run a full market analysis. This endpoint consumes significant tokens and may take 10–30 seconds to complete. For long-running analyses, the streaming endpoint is recommended.

Request body
NameTypeRequiredDescription
querystringrequiredThe market research question or topic to analyze
depthstringoptional"quick" | "standard" | "comprehensive" (default: standard)
Response
{
  "analysis": {
    "marketSize": "...",
    "trends": ["AI adoption accelerating", "..."],
    "competitors": [...],
    "recommendations": [...]
  }
}
curl -X POST https://api.yourdomain.com/v1/market-analysis \
  -H "x-api-key: sk_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "Analyze the B2B SaaS project management market in 2026",
    "depth": "comprehensive"
  }'