# Onchain & Trading Intelligence Board Reader

> Onchain & Trading Intelligence Board Reader is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Reads a named intelligence board to retrieve stored keys or configurations for AI trading and onchain agents across 130 multichain tools

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/board/get
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchain-trading-intelligence-board-reader-791db4b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4wAobIjvRjemO-HzLqvzq

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 onchain-trading-intelligence-board-reader-791db4b2 -d '<json body>'
```

Example prompt: Pull all the keys from my 'alpha-signals' board using my secret token — I want to see everything currently stored there for my trading agent.

## When to prefer this

Use this endpoint when you need to retrieve previously stored configurations, cached intelligence results, or agent state from a named board associated with the 130-tool onchain trading intelligence platform. Prefer this over general key-value stores when the data is specifically tied to onchain/trading agent workflows on this platform.

## Known failure modes

- Invalid or missing token returns authentication error
- Board name not found returns empty or error response
- Key not found on board returns null or not-found response
- Service unavailability on Railway infrastructure returns 5xx
- Payment not settled returns 402 Payment Required

## How this service works

Shared blackboard: read one key or list all keys+entries. Send { board, token, key? }.

## Output

Returns the value(s) stored on the named board: either a specific key's value (when a key is provided) or a list of all key names and values stored on that board (when no key is specified). Data may include trading configurations, cached intelligence results, agent state, or other structured data previously written to the board.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "board",
  "token"
 ],
 "properties": {
  "key": {
   "type": "string",
   "description": "Key to read; omit to list all"
  },
  "board": {
   "type": "string",
   "description": "Board name"
  },
  "token": {
   "type": "string",
   "description": "Your secret token"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchain-trading-intelligence-board-reader-791db4b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
