# Vietlott Vietnam National Lottery Results

> Vietlott Vietnam National Lottery Results is a paid API for AI agents from web-production-7ca5d.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the latest winning numbers and draw details for Vietnam Vietlott games including Power 6/55, Mega 6/45, Keno, Max 3D, Max 3D Pro, and Bingo18

## Facts

- Endpoint: GET https://web-production-7ca5d.up.railway.app/v1/vietnam/vietlott
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vietlott-vietnam-national-lottery-results-29e7dde0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JXBUIe0wxk57FWCzyL6xb

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 vietlott-vietnam-national-lottery-results-29e7dde0
```

Example prompt: What were the winning numbers for the last 5 Vietlott Power 6/55 draws in Vietnam?

## When to prefer this

Use this endpoint when you specifically need Vietnam Vietlott national lottery results (Power 6/55, Mega 6/45, Keno, Max 3D, Max 3D Pro, Bingo18). It is the only x402-accessible source for Vietnamese national lottery data, updated daily shortly after official draws. Prefer this over regional traditional Vietnamese lottery endpoints (XSMN, XSMB, XSMT) which cover provincial draw-style lotteries rather than national Vietlott jackpot games.

## Known failure modes

- Invalid game type enum value returns a validation error
- Requesting more than 30 draws may return an error or cap at 30
- Results may lag a few hours after the official daily draw
- Service unavailable if Railway hosting is down

## How this service works

Latest Vietnam Vietlott lottery results: Power 6/55, Mega 6/45, Keno, Max 3D, Max 3D Pro, Bingo18. Returns draw id, date and winning numbers for the most recent draws, updated daily within hours of the official draw. The only x402 source for Vietnamese national lottery data.

## Output

Returns an array of recent draw records for the specified Vietlott game, each containing draw ID, draw date, and the winning numbers. Defaults to the last 5 draws for Power 6/55 if no parameters are specified; supports up to 30 draws per call.

## 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",
     "required": [],
     "properties": {
      "game": {
       "enum": [
        "power655",
        "mega645",
        "keno",
        "max3d",
        "max3dpro",
        "bingo18"
       ],
       "type": "string",
       "description": "Vietlott game (default power655)"
      },
      "limit": {
       "type": "number",
       "description": "Number of recent draws (default 5, max 30)"
      }
     }
    }
   },
   "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/vietlott-vietnam-national-lottery-results-29e7dde0/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)
