# Lottery Draw Schedule API

> Lottery Draw Schedule API is a paid API for AI agents from web-production-7ca5d.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the next upcoming draw datetime in UTC for major lotteries including US Powerball, Mega Millions, Vietnam Vietlott Power 6/55, Mega 6/45, and Vietnamese regional lotteries XSMB/XSMN/XSMT.

## Facts

- Endpoint: GET https://web-production-7ca5d.up.railway.app/v1/schedule
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lottery-draw-schedule-api-1c9acc28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_otvDSD5ie5Ymm1owYpzE-

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 lottery-draw-schedule-api-1c9acc28
```

Example prompt: When is the next draw for US Powerball, Mega Millions, and Vietnam's Vietlott lotteries? I want the upcoming draw times in UTC so I can set reminders.

## When to prefer this

Use this endpoint when you need to know exactly when the next lottery draw will occur for reminder bots, countdown widgets, or scheduling notifications. It covers both US major lotteries (Powerball, Mega Millions) and Vietnamese lotteries (Vietlott and regional XSMB/XSMN/XSMT), making it ideal for multi-region lottery applications.

## Known failure modes

- Upstream lottery schedule data unavailable — service may return stale or empty schedule
- Network timeout from Railway-hosted service — retry recommended
- Lottery schedule not yet published for the next draw — some games may be missing

## How this service works

Next draw times for major lotteries worldwide: US Powerball, Mega Millions, Vietnam Vietlott Power 6/55, Mega 6/45 and Vietnamese regional lotteries XSMB/XSMN/XSMT. Returns the next upcoming draw datetime in UTC for each game. Perfect for reminder bots and countdown widgets.

## Output

A list of upcoming draw datetimes in UTC for each supported lottery game, including US Powerball, Mega Millions, Vietnam Vietlott Power 6/55, Mega 6/45, and Vietnamese regional lotteries XSMB, XSMN, and XSMT.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lottery-draw-schedule-api-1c9acc28/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from web-production-7ca5d.up.railway.app](https://www.zero.xyz/host/web-production-7ca5d.up.railway.app/llms.txt)
