get/api/v2/acquisition/conversion-intents/{id}
Get one captured public conversion intent.
Returns one project-scoped public sales, demo, report, partner, signup, or contact intent with unresolved Action handoff state. A row outside the active project returns the same not-found response as a missing row.
Requires bearer API keyParameters
| Name | In | Description |
|---|---|---|
| X-Project-Id | header | Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.string |
| id | path / required | No description provided.string |
Responses
200
application/jsonPublic conversion intent evidence detail.
{
"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"
]
}404
application/jsonPublic conversion intent not found.
{
"type": "object",
"additionalProperties": true
}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.