# FootballPulse Transfer Watch

> FootballPulse Transfer Watch is a paid API for AI agents from footballpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Delivers football transfer intelligence including rumours with credibility ratings, completed deals, squad impact analysis, Transfermarkt valuations, and deadline-day alerts.

## Facts

- Endpoint: GET https://footballpulse.theaslangroupllc.com/api/transfer-watch
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footballpulse-transfer-watch-7d97f0e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A2XBtDeh5tl0V7lvVutZk

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 footballpulse-transfer-watch-7d97f0e0
```

Example prompt: What are the latest transfer rumours for Liverpool this window — especially any with high credibility ratings — and what would the squad impact be if those deals went through?

## When to prefer this

Choose this endpoint when you need real-time transfer intelligence combining credibility-rated rumours, market valuations, and squad impact analysis in one call. Ideal for football agents, fantasy managers, or betting agents needing transfer context before a match or during a transfer window. Prefer this over generic sports news APIs when Transfermarkt valuations and credibility ratings are needed together.

## Known failure modes

- No rumours found for specified club or player — returns empty result set
- Invalid or unrecognised club/player name — returns 400 error
- Transfer window closed — limited or no active rumour data available
- Payment not processed — returns 402 Payment Required
- Rate limit exceeded — returns 429 Too Many Requests

## How this service works

Transfer-market intelligence — rumours with credibility ratings, completed deals, squad impact, Transfermarkt valuations and deadline-day intel. For football and fantasy agents.

## Output

Returns a structured payload of transfer rumours with credibility scores, confirmed completed deals, squad impact assessments, Transfermarkt market valuations for involved players, and any active deadline-day intelligence for the queried club or league.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | pt | ja | zh | ko | ar (default: en)"
      },
      "team": {
       "type": "string",
       "description": "club name for team-specific transfer intel e.g. Arsenal, Real Madrid, Bayern (optional)"
      },
      "league": {
       "type": "string",
       "description": "optional"
      },
      "player": {
       "type": "string",
       "description": "player name for individual transfer tracking (optional)"
      },
      "window": {
       "type": "string",
       "description": "summer | winter | current (default: current)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "hot_rumours": [
   {
    "to": "Manchester City",
    "fee": "€150m",
    "from": "Bayer Leverkusen",
    "player": "Florian Wirtz",
    "probability": "60-70%",
    "source_credibility": "RELIABLE"
   }
  ],
  "betting_angle": "Wirtz transfer speculation driving Leverkusen next-season odds volatility",
  "market_values": [
   {
    "team": "Bayer Leverkusen",
    "player": "Florian Wirtz",
    "value_trend": "↑",
    "current_value": "€180m",
    "contract_status": "2027"
   }
  ],
  "transfer_window": "Summer 2026"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/footballpulse-transfer-watch-7d97f0e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from footballpulse.theaslangroupllc.com](https://www.zero.xyz/host/footballpulse.theaslangroupllc.com/llms.txt)
