# Esports Upcoming Matches Feed (LoL, Valorant, Dota 2)

> Esports Upcoming Matches Feed (LoL, Valorant, Dota 2) is a paid API for AI agents from app-production-23b4.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns upcoming professional esports matches in the next 48 hours for League of Legends, Valorant, and Dota 2, including teams, start times, format, tournament, and Twitch stream links.

## Facts

- Endpoint: GET https://app-production-23b4.up.railway.app/v1/matches/upcoming
- 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/esports-upcoming-matches-feed-lol-valorant-dota-2-96dac506
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IMZx1dPrBUR9G2jFtjbmE

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 esports-upcoming-matches-feed-lol-valorant-dota-2-96dac506
```

Example prompt: Show me all upcoming professional Valorant matches in the next 24 hours — I need the team names, start times, tournament, and Twitch stream links for each one.

## When to prefer this

Use this endpoint when you need a forward-looking schedule of professional esports matches across LoL, Valorant, or Dota 2, especially when Twitch stream links and tournament context are needed. Prefer this over general sports APIs when esports-specific data (game title, pro team names, streaming links) is required. Choose sibling endpoints for live matches or historical results.

## Known failure modes

- Invalid game enum value returns 400 validation error
- hours_ahead exceeds 168 hours returns 400 or clamped response
- limit exceeds 200 returns 400 or clamped to max
- No matches found in window returns empty list
- Payment not provided or rejected returns 402 Payment Required
- Service unavailable returns 503 with no match data

## How this service works

Upcoming professional esports matches for League of Legends, Valorant and Dota 2 in the next 48 hours: teams, scheduled start time (UTC), best-of format, tournament name and Twitch stream link. Refreshed every 15 minutes. Ideal for fantasy apps, betting models, fan bots and daily briefings.

## Output

A list of upcoming professional esports matches refreshed every 15 minutes, each entry containing team names, scheduled UTC start time, best-of format (e.g. BO3), tournament name, and Twitch stream URL. Filtered by game (lol, valorant, or dota2) if specified, up to the requested limit and look-ahead window.

## 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": [
        "lol",
        "valorant",
        "dota2"
       ],
       "type": "string",
       "description": "Game filter: lol (League of Legends), valorant, or dota2. Omit for all games."
      },
      "limit": {
       "type": "number",
       "description": "Max matches returned (default 50, max 200)"
      },
      "hours_ahead": {
       "type": "number",
       "description": "Look-ahead window in hours (default 48, max 168)"
      }
     }
    }
   },
   "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/esports-upcoming-matches-feed-lol-valorant-dota-2-96dac506/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app-production-23b4.up.railway.app](https://www.zero.xyz/host/app-production-23b4.up.railway.app/llms.txt)
