# Goal402 Team Detail with Stadium Info

> Goal402 Team Detail with Stadium Info 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-15).

Returns detailed information about a football team including name, colors, nickname, country, and stadium details by team ID

## Facts

- Endpoint: GET https://goal402-x402.percha.workers.dev/teams/iia
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/goal402-x402-percha-workers-dev-311d3f2e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iRKUjjrgNW30Whm1LcxNR

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-311d3f2e
```

Example prompt: What are the details for Gimnasia La Plata — their colors, nickname, and stadium info? Use team ID 'iia'.

## When to prefer this

Use this endpoint when you need comprehensive team profile data including stadium information for a known football team ID. Prefer this over roster or match endpoints when the primary need is team identity, branding colors, or stadium details rather than player lists or match results.

## Known failure modes

- Invalid or unknown team ID returns empty or error response
- Missing required 'id' query parameter causes request failure
- Team exists but some fields (founded, stadium_capacity, lat/lng) may be null
- Network or payment authorization failure (402 payment required if USDC not provided)

## How this service works

Team detail with stadium info

## Output

A JSON object containing the team's ID, name, short name, nickname, team color (hex), text color (hex), country ID, stadium name, stadium address, stadium coordinates, stadium capacity, and founding year.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "id": "team-001"
  }
 }
}
```

## 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": {
      "id": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "short_name": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id",
  "city",
  "name",
  "color",
  "founded",
  "nickname",
  "country_id",
  "short_name",
  "text_color",
  "stadium_lat",
  "stadium_lng",
  "stadium_name",
  "stadium_address",
  "stadium_capacity"
 ],
 "properties": {
  "id": {
   "type": "string"
  },
  "city": {
   "type": "null"
  },
  "name": {
   "type": "string"
  },
  "color": {
   "type": "string"
  },
  "founded": {
   "type": "null"
  },
  "nickname": {
   "type": "string"
  },
  "country_id": {
   "type": "string"
  },
  "short_name": {
   "type": "string"
  },
  "text_color": {
   "type": "string"
  },
  "stadium_lat": {
   "type": "null"
  },
  "stadium_lng": {
   "type": "null"
  },
  "stadium_name": {
   "type": "string"
  },
  "stadium_address": {
   "type": "null"
  },
  "stadium_capacity": {
   "type": "null"
  }
 }
}
```

## More

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