# Heurist Mesh Caesar Research Agent – Get Research Result

> Heurist Mesh Caesar Research Agent – Get Research Result is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Retrieves the status and result of a previously submitted Caesar research query by its research ID.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/CaesarResearchAgent/get_research_result
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-caesar-research-agent-get-research-result-0d93e8b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IBLGG6QAJZOfO48WKY4iR

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability heurist-mesh-caesar-research-agent-get-research-result-0d93e8b6 -d '<json body>'
```

Example prompt: Can you check the result of my Caesar research query with ID 'abc123' and tell me what it found — is it done yet or still processing?

## When to prefer this

Use this endpoint after submitting a research query to the Caesar Research Agent and needing to poll for its result. It is the correct retrieval step in an asynchronous research workflow where a research ID was previously returned. Choose this over a general web search or scraping endpoint when you specifically need to retrieve the output of a Caesar agent task by ID.

## Known failure modes

- Invalid or unknown research ID returns an error or empty result
- Job status is 'failed' with no result data available
- Research still 'queued' or 'researching' — result not yet available
- Network or payment failure prevents the request from completing
- Malformed request body causes a 400-level error

## How this service works

Retrieve the results of a Caesar research query by its research ID. Returns the research status and result if completed. Status can be 'queued', 'researching', 'completed', or 'failed'.

## Output

Returns the current status of the research job ('queued', 'researching', 'completed', or 'failed') and, if completed, the full research result or findings produced by the Caesar research agent.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "research_id"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "research_id": {
       "type": "string",
       "description": "The research ID returned by caesar_research tool."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-caesar-research-agent-get-research-result-0d93e8b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
