get
/api/v2/acquisition/free-tool-runs/{id}Get one public free-tool acquisition run.
Returns one project-scoped free-tool run with its interaction events and unresolved Action handoff state. A row outside the active project returns the same not-found response as a missing row.
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
id
path / required
No description provided.
Schema: string
Responses
200
Acquisition free-tool evidence detail.
application/json{
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string"
},
"toolSlug": {
"type": "string"
},
"status": {
"type": "string"
},
"normalizedDomain": {
"type": "string",
"nullable": true
},
"normalizedUrl": {
"type": "string",
"nullable": true
},
"inputPayload": {
"type": "object",
"additionalProperties": true
},
"resultPayload": {
"type": "object",
"additionalProperties": true
},
"sessionId": {
"type": "string",
"nullable": true
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"events": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string"
},
"eventType": {
"type": "string"
},
"metadata": {
"type": "object",
"additionalProperties": true
},
"createdAt": {
"type": "string",
"format": "date-time"
}
},
"required": [
"id",
"eventType",
"metadata",
"createdAt"
]
}
},
"action": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"status": {
"type": "string"
}
},
"required": [
"id",
"status"
]
}
},
"required": [
"id",
"toolSlug",
"status",
"inputPayload",
"resultPayload",
"createdAt",
"events",
"action"
]
}404
Free-tool acquisition run not found.
application/json{
"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.