AltSportsLeagues

List Archetypes

Retrieve all league archetypes

List Archetypes

GET /v1/sports/archetypes

Retrieve all league archetypes — classification patterns that describe how leagues operate (e.g., tournament-based, season-long, head-to-head).

Request

cURL
curl -X GET "https://api.altsportsleagues.ai/v1/sports/archetypes" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

200 OK
{
  "data": [
    {
      "key": "season-league",
      "name": "Season League",
      "description": "Traditional season with regular games and playoffs",
      "example_leagues": ["NLL", "MASL"]
    },
    {
      "key": "tour-series",
      "name": "Tour Series",
      "description": "Multiple events across locations with cumulative rankings",
      "example_leagues": ["WSL", "SLS", "PBR"]
    },
    {
      "key": "tournament",
      "name": "Tournament",
      "description": "Single or multi-day bracket/elimination events",
      "example_leagues": ["BKFC", "Power Slap"]
    }
  ],
  "meta": {
    "total": 8,
    "api_version": "v1",
    "timestamp": "2026-03-07T21:00:00Z"
  }
}

On this page