# Onchain & Trading Intelligence Board Set

> Onchain & Trading Intelligence Board Set 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-14).

Stores a JSON array value under a keyed entry on a named board, used to persist state or data within the onchain/trading intelligence platform

## Facts

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

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-set-d1dc34a2 -d '<json body>'
```

Example prompt: Save my latest Solana token scan results as a JSON array to the 'solana-alerts' board under the key 'pump-fun-graduates', using my secret token 'tok_abc123'.

## When to prefer this

Use this endpoint when an AI agent needs to persist structured JSON array data (such as scan results, watchlists, snapshots, or signals) to a named board for later retrieval or sharing between agent sessions, within the onchain/trading intelligence platform context.

## Known failure modes

- Invalid or missing secret token returns authentication error
- Malformed or non-array value field causes validation failure
- Missing required fields (key, board, token, value) return 400 bad request
- Board name not found or not authorized returns permission error
- Railway service downtime causes 502/503 errors

## How this service works

Shared blackboard: set a versioned key on a multi-writer board. Send { board, token, key, value }.

## Output

A confirmation that the JSON array value was successfully stored under the specified key on the named board, or an error if the token is invalid or input is malformed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "board",
  "key",
  "token",
  "value"
 ],
 "properties": {
  "key": {
   "type": "string",
   "description": "Entry key"
  },
  "board": {
   "type": "string",
   "description": "Board name"
  },
  "token": {
   "type": "string",
   "description": "Your secret token"
  },
  "value": {
   "type": "object",
   "description": "JSON value"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchain-trading-intelligence-board-set-d1dc34a2/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)
