# Scheduled Job Status Check — Onchain & Trading Intelligence

> Scheduled Job Status Check — Onchain & Trading Intelligence 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).

Polls the status of a previously submitted scheduled intelligence job using its job ID and secret token

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/schedule/status
- 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/scheduled-job-status-check-onchain-trading-intelligence-1474efc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7Y2dhs4UJZ_CeE9zgZ1L2

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 scheduled-job-status-check-onchain-trading-intelligence-1474efc0 -d '<json body>'
```

Example prompt: Check the status of my scheduled trading intelligence job — the job ID is 'job_abc123' and my token is 'tok_xyz789'.

## When to prefer this

Use this endpoint after submitting a job via POST /api/schedule when you need to asynchronously check whether a long-running or deferred onchain intelligence task has completed. Prefer this over synchronous intelligence endpoints when dealing with batch jobs, scheduled tasks, or workflows that may take longer than a single request-response cycle to complete.

## Known failure modes

- Invalid or expired job ID returns a not-found or unauthorized error
- Wrong or missing secret token results in authentication failure
- Job still in pending or running state returns a non-final status with no result payload yet
- Job failed due to upstream data unavailability or chain RPC errors
- Request missing required fields (id or token) returns a validation error

## How this service works

Webhook Scheduler: check a scheduled job's status and last delivery result. Send { token, id }.

## Output

Returns the current status of the scheduled job (e.g. pending, running, complete, failed) along with any output or result payload produced by the underlying intelligence task once it has finished executing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id",
  "token"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Job id from POST /api/schedule"
  },
  "token": {
   "type": "string",
   "description": "Your secret token"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scheduled-job-status-check-onchain-trading-intelligence-1474efc0/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)
