# Robinhood Chain Session Clock

> Robinhood Chain Session Clock 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).

Returns the current session clock state for the Robinhood Chain tokenized-stock trading environment, including market session timing and status.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/session-clock
- 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/robinhood-chain-session-clock-d73d50f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TBvfKvIh8Sd2jRV85wRwT

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 robinhood-chain-session-clock-d73d50f1 -d '<json body>'
```

Example prompt: What's the current session clock status on Robinhood Chain — is the tokenized stock market open right now, and how much time is left in the session?

## When to prefer this

Use this endpoint when an agent needs to gate trading logic or decisions on the current Robinhood Chain tokenized-stock session state — for example, avoiding trades outside market hours, timing entries around session transitions, or syncing bot logic with pre-market vs regular vs after-hours windows. It is specifically scoped to Robinhood Chain's tokenized equity session timing rather than generic crypto 24/7 markets.

## Known failure modes

- Network or Railway deployment downtime returning 5xx errors
- Payment failure if USDC/USDG balance is insufficient for the $0.003 per-call fee
- Malformed or unexpected POST body returning 400 validation error
- Session clock data temporarily stale if upstream Robinhood Chain feed is delayed

## How this service works

US equity market session clock: is the underlying cash market (NYSE/Nasdaq) open, pre-market, after-hours, or closed right now, with holiday/half-day awareness and minutes-to-open/close. Send {}. The scheduling primitive every 24/7 Robinhood Chain agent needs to time premium/discount and gap trades around market hours.

## Output

Returns the current session clock state for the Robinhood Chain tokenized-stock environment, likely including fields such as current session name (e.g. pre-market, regular, after-hours), session open/close timestamps, time remaining in the current session, and overall market open/closed status.

## 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"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-session-clock-d73d50f1/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)
