# Goal402 Today's Football Matches

> Goal402 Today's Football Matches is a paid API for AI agents from goal402-x402.percha.workers.dev, paid per call via x402, $0.001000/call, status unknown (last checked 2026-09-14).

Returns all football matches scheduled for today

## Facts

- Endpoint: GET https://goal402-x402.percha.workers.dev/matches/today
- Price: $0.001000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/goal402-x402-percha-workers-dev-31106900
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__DwrVtwicwX6V5gDATuA_

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 goal402-x402-percha-workers-dev-31106900
```

Example prompt: What football matches are scheduled for today? Give me the full list of today's fixtures.

## When to prefer this

Use this endpoint when you need a comprehensive list of all football matches happening today without filtering by league or team. Prefer the league-specific endpoint if you only want matches from a particular competition, or the live matches endpoint if you only want currently in-progress games.

## Known failure modes

- No matches scheduled today returns empty array
- Service unavailable returns 503
- Payment not included or invalid returns 402 Payment Required
- Rate limit exceeded returns 429

## How this service works

All matches scheduled for today

## Output

An array of match objects representing all football games scheduled for today, likely including team names, kick-off times, league/competition, and match status.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET"
 }
}
```

## 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",
     "properties": {
      "matches": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "matches"
 ],
 "properties": {
  "matches": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "id",
     "round",
     "league",
     "status",
     "winner",
     "stadium",
     "away_team",
     "game_time",
     "home_team",
     "away_score",
     "home_score",
     "start_time_utc"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "round": {
      "type": "string"
     },
     "league": {
      "type": "object",
      "required": [
       "id",
       "name"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "name": {
        "type": "string"
       }
      }
     },
     "status": {
      "type": "string"
     },
     "winner": {
      "type": "string"
     },
     "stadium": {
      "type": "null"
     },
     "away_team": {
      "type": "object",
      "required": [
       "id",
       "name",
       "short_name"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "name": {
        "type": "string"
       },
       "short_name": {
        "type": "string"
       }
      }
     },
     "game_time": {
      "type": "null"
     },
     "home_team": {
      "type": "object",
      "required": [
       "id",
       "name",
       "short_name"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "name": {
        "type": "string"
       },
       "short_name": {
        "type": "string"
       }
      }
     },
     "away_score": {
      "type": "null"
     },
     "home_score": {
      "type": "null"
     },
     "start_time_utc": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/goal402-x402-percha-workers-dev-31106900/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from goal402-x402.percha.workers.dev](https://www.zero.xyz/host/goal402-x402.percha.workers.dev/llms.txt)
