# Goal402 Team Roster (Players & Staff)

> Goal402 Team Roster (Players & Staff) is a paid API for AI agents from goal402-x402.percha.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the full team roster including players and staff members for a specified football/soccer team

## Facts

- Endpoint: GET https://goal402-x402.percha.workers.dev/teams/hccd/players
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/goal402-x402-percha-workers-dev-802e0878
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ACU9JQWLAIjwsTQj9oPfO

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-802e0878
```

Example prompt: Can you show me the full squad roster — players and staff — for the football team with ID 'hccd'?

## When to prefer this

Use this endpoint when you need to retrieve the full personnel roster (players and coaching/support staff) for a specific football team identified by its team ID. Prefer this over team detail endpoints when the primary need is squad composition rather than stadium or general club info.

## Known failure modes

- Missing or invalid team ID returns an error or empty result
- Team ID not found in the database returns a 404 or empty roster
- Payment not processed (x402 protocol failure) returns a 402 Payment Required response
- Network timeout or worker unavailability returns a 5xx error

## How this service works

Team roster with players and staff

## Output

Returns a JSON object containing the team_id, an array of players, and an array of staff members associated with the specified team. Each array includes personnel details for the club's roster.

## Example request

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

## 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": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Team ID"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "staff": {
       "type": "array"
      },
      "players": {
       "type": "array"
      },
      "team_id": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/goal402-x402-percha-workers-dev-802e0878/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)
