# Suverse Sports Last Events

> Suverse Sports Last Events is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns the most recent match results with scores and dates for a given sports team by team ID, sourced from TheSportsDB.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-sports-last-events
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-sports-last-events-07be7408
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pw08Uz1f7F6wlWnOBZr7S

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 suverse-sports-last-events-07be7408 -d '<json body>'
```

Example prompt: Can you pull up the last match results for Manchester United — I want to see their recent scores and dates to review their form? Their TheSportsDB team ID is 133602.

## When to prefer this

Choose this endpoint when you need recent historical match results and scores for a specific sports team identified by TheSportsDB team ID, especially for form analysis, betting research, or fantasy sports decisions, and you want a no-API-key-required proxy with micro-payment access.

## Known failure modes

- Invalid or unknown team ID returns empty results or an error
- TheSportsDB upstream unavailability causes request failure
- Malformed POST body missing required fields returns a 400 error
- Rate limiting or payment failure (x402) may block access

## How this service works

Recent past events for a team by team id from TheSportsDB, no key. Returns the last results with scores and dates. For AI agents reviewing team form.

## Output

Returns a list of the team's most recent match events, each including the match date, opponent, home/away scores, and result, allowing an agent to assess recent team form and performance trends.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-sports-last-events-07be7408/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
