# Synapse API — Latest Block Lookup (Tempo)

> Synapse API — Latest Block Lookup (Tempo) is a paid API for AI agents from synapse-api-brown.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Fetches the latest block data from a blockchain network via the Tempo module of the Synapse API suite.

## Facts

- Endpoint: POST https://synapse-api-brown.vercel.app/api/tempo/block/latest
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synapse-api-latest-block-lookup-tempo-1113046e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BkkA-ZSjekcgWSIPXABox

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 synapse-api-latest-block-lookup-tempo-1113046e -d '<json body>'
```

Example prompt: What is the latest block on Ethereum right now — can you fetch the current block number, hash, and timestamp for me?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call lookup of the latest block on any of 57+ supported blockchain networks without maintaining your own node infrastructure. Prefer this over self-hosted RPC calls when operating in an agent context that supports x402 micropayments and needs broad multi-chain coverage with minimal setup.

## Known failure modes

- Network unavailable or blockchain node unreachable — returns error or timeout
- Invalid or unsupported blockchain network specified — returns 400 or 422 error
- Payment not completed via x402 — returns 402 Payment Required
- Rate limiting or quota exceeded — returns 429 Too Many Requests
- Empty body or missing required fields — returns validation error

## How this service works

High-speed API suite for AI processing, web scraping, and smart data utilities across 57+ blockchain networks. Pay-per-call via x402.

## Output

Returns the latest block data from the targeted blockchain network, typically including block number (height), block hash, timestamp, and related metadata for the chain tip.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synapse-api-latest-block-lookup-tempo-1113046e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from synapse-api-brown.vercel.app](https://www.zero.xyz/host/synapse-api-brown.vercel.app/llms.txt)
