/api/v2/acquisition/conversion-intentsList captured public conversion intents.
Returns locally captured public sales, demo, report, partner, signup, and contact intents. Rows include unresolved project-scoped Action handoff state when a local follow-up already exists. External delivery remains disabled unless explicitly integrated outside this endpoint.
Requires bearer API key
Parameters
X-Project-Id
header
Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.
Schema: string
q
query
Search contact fields, source path, CTA label, or message.
Schema: string
intent
query
No description provided.
Schema: string (demo, sales, gated_report, partner, signup, contact)
status
query
No description provided.
Schema: string (captured)
limit
query
No description provided.
Schema: integer
Responses
Public conversion intent evidence list.
application/json{
"type": "object",
"additionalProperties": false,
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string"
},
"intentType": {
"type": "string"
},
"status": {
"type": "string"
},
"sourcePath": {
"type": "string"
},
"ctaLabel": {
"type": "string"
},
"email": {
"type": "string",
"nullable": true
},
"name": {
"type": "string",
"nullable": true
},
"company": {
"type": "string",
"nullable": true
},
"website": {
"type": "string",
"nullable": true
},
"message": {
"type": "string",
"nullable": true
},
"sessionId": {
"type": "string",
"nullable": true
},
"externalDelivery": {
"type": "string"
},
"metadata": {
"type": "object",
"additionalProperties": true
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"action": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"status": {
"type": "string"
}
},
"required": [
"id",
"status"
]
}
},
"required": [
"id",
"intentType",
"status",
"sourcePath",
"ctaLabel",
"externalDelivery",
"metadata",
"createdAt",
"action"
]
}
},
"summary": {
"type": "object",
"additionalProperties": false,
"properties": {
"total": {
"type": "integer"
},
"withEmail": {
"type": "integer"
},
"localOnly": {
"type": "integer"
},
"byIntentType": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"intentType": {
"type": "string"
},
"count": {
"type": "integer"
}
},
"required": [
"intentType",
"count"
]
}
}
},
"required": [
"total",
"withEmail",
"localOnly",
"byIntentType"
]
},
"filters": {
"type": "object",
"additionalProperties": false,
"properties": {
"intent": {
"type": "string",
"nullable": true
},
"q": {
"type": "string",
"nullable": true
},
"status": {
"type": "string",
"nullable": true
}
},
"required": [
"intent",
"q",
"status"
]
}
},
"required": [
"items",
"summary",
"filters"
]
}Try it
Send this request to the local WatchLLM REST handler. Use a key from `/workspace/api`; organization keys can include `X-Project-Id` only when the endpoint documents that header.