Skip to main content
GET
/
intelligence
/
insights
AI insights
curl --request GET \
  --url https://ai.wisepilot.app/api/v1/intelligence/insights \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "insights": [
      {
        "id": "<string>",
        "insightType": "<string>",
        "status": "<string>",
        "proposal": {},
        "confidenceScore": 123,
        "evidenceRefs": {},
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

API key prefixed with cr_ (e.g. cr_a1b2c3...)

Query Parameters

website_id
string<uuid>

Website ID. Auto-resolved if key has single website scope.

status
enum<string>
default:pending

Filter by status (default pending)

Available options:
pending,
accepted,
dismissed
insight_type
enum<string>

Filter by insight type

Available options:
competitor_gap,
audience_expansion,
cta_test_proposal,
unanswered_question,
messaging_win,
dimension_promotion,
seo_seed_proposal,
ad_refresh_proposal,
hypothesis_review
limit
integer
default:20

Max insights (default 20)

Response

Insights

success
boolean
required
data
object