# Seneschal Monero Chain Height

> Seneschal Monero Chain Height is a paid API for AI agents from api.seneschal.space, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current Monero blockchain height and sync status from a live monerod node

## Facts

- Endpoint: GET https://api.seneschal.space/v1/q/xmr/height
- 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/api-seneschal-space-4a0a8d9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yGtA2m4BaPeKVOHe2U8S1

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 api-seneschal-space-4a0a8d9b
```

Example prompt: What's the current Monero block height and is the node fully synced?

## When to prefer this

Use this endpoint when you need a quick, authoritative, real-time Monero chain height and sync status from a dedicated monerod node, especially in automated workflows or monitoring systems that need a lightweight single-fact response without parsing a full block explorer.

## Known failure modes

- Node temporarily unreachable or being restarted — 503 or timeout
- Payment not provided or insufficient — 402 Payment Required
- Rate limit exceeded — 429 Too Many Requests
- Node behind on sync, returning stale height

## How this service works

Single-fact: current Monero chain height + sync status. Sourced from a live operator-run monerod node.

## Output

Returns a single-fact JSON response containing the current Monero blockchain height (block count) and sync status from a live Seneschal-operated monerod node.

## Example request

```json
{
 "query": "{\\\"input\\\": {\\\"type\\\": \\\"http\\\", \\\"method\\\": \\\"GET\\\", \\\"queryParams\\\": {}}}"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "monero",
  "height": 3686932,
  "as_of_ms": 1765532000000,
  "synchronized": true,
  "behind_blocks": 0,
  "top_block_hash": "<block-hash>"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-seneschal-space-4a0a8d9b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.seneschal.space](https://www.zero.xyz/host/api.seneschal.space/llms.txt)
