WSC Sports Blaze Feed API

Server-side pull API for the WSC Sports Experiences content catalog. Seven read-only GET operations return Stories, Moments and Videos metadata — filtered by title, labels, status, geo, live state, create/update time and sport entities (game, team, player, round, season) — or fetched directly by content ID, plus a trending-recommendations endpoint ranked by WSC Sports. Authenticated with a Feed API key passed as the ApiKey query parameter, which is distinct from the Experiences app API key.

Operations 7

GET /v1/stories
GET /v1/stories/ids
GET /v1/moments
GET /v1/moments/ids
GET /v1/videos
GET /v1/videos/ids
GET /v1/recommendations/trending

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/wsc-sports-blaze-feed-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

wsc-sports-blaze-feed-api.json Raw ↑
{
  "openapi": "3.0.1",
  "info": {
    "title": "Blaze Feed API",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "/api/blazefeed"
    }
  ],
  "paths": {
    "/v1/stories": {
      "get": {
        "tags": [
          "Feed"
        ],
        "parameters": [
          {
            "name": "Title",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "LabelsFilterExpression",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Statuses",
            "in": "query",
            "schema": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/ContentStatus"
              }
            }
          },
          {
            "name": "Geo",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "OnlyLive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "UpdateTime.From",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "UpdateTime.To",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "CreateTime.From",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "CreateTime.To",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Game.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Game.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Team.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Team.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Player.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Player.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Round.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Round.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Season.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Season.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.IdType",
            "in": "query",
            "schema": {
              "$ref": "#/components/schemas/EntityIdType"
            }
          },
          {
            "name": "PageNum",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "PageSize",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "ApiKey",
            "in": "query",
            "description": "Api Key Authentication"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse"
                }
              },
              "application/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse"
                }
              },
              "text/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/v1/stories/ids": {
      "get": {
        "tags": [
          "Feed"
        ],
        "parameters": [
          {
            "name": "ContentIds",
            "in": "query",
            "required": true,
            "schema": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          {
            "name": "PageNum",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "PageSize",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "ApiKey",
            "in": "query",
            "description": "Api Key Authentication"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse"
                }
              },
              "application/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse"
                }
              },
              "text/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/v1/moments": {
      "get": {
        "tags": [
          "Feed"
        ],
        "parameters": [
          {
            "name": "Title",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "LabelsFilterExpression",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Statuses",
            "in": "query",
            "schema": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/ContentStatus"
              }
            }
          },
          {
            "name": "Geo",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "OnlyLive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "UpdateTime.From",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "UpdateTime.To",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "CreateTime.From",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "CreateTime.To",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Game.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Game.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Team.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Team.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Player.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Player.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Round.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Round.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Season.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Season.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.IdType",
            "in": "query",
            "schema": {
              "$ref": "#/components/schemas/EntityIdType"
            }
          },
          {
            "name": "PageNum",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "PageSize",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "ApiKey",
            "in": "query",
            "description": "Api Key Authentication"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse"
                }
              },
              "application/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse"
                }
              },
              "text/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/v1/moments/ids": {
      "get": {
        "tags": [
          "Feed"
        ],
        "parameters": [
          {
            "name": "ContentIds",
            "in": "query",
            "required": true,
            "schema": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          {
            "name": "PageNum",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "PageSize",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "ApiKey",
            "in": "query",
            "description": "Api Key Authentication"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse"
                }
              },
              "application/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse"
                }
              },
              "text/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/v1/videos": {
      "get": {
        "tags": [
          "Feed"
        ],
        "parameters": [
          {
            "name": "Title",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "LabelsFilterExpression",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Statuses",
            "in": "query",
            "schema": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/ContentStatus"
              }
            }
          },
          {
            "name": "Geo",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "OnlyLive",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "UpdateTime.From",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "UpdateTime.To",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "CreateTime.From",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "CreateTime.To",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Game.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Game.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Team.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Team.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Player.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Player.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Round.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Round.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.Season.WscId",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "Entities.Season.ServiceProviderId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "Entities.IdType",
            "in": "query",
            "schema": {
              "$ref": "#/components/schemas/EntityIdType"
            }
          },
          {
            "name": "PageNum",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "PageSize",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "ApiKey",
            "in": "query",
            "description": "Api Key Authentication"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse"
                }
              },
              "application/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse"
                }
              },
              "text/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/v1/videos/ids": {
      "get": {
        "tags": [
          "Feed"
        ],
        "parameters": [
          {
            "name": "ContentIds",
            "in": "query",
            "required": true,
            "schema": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          {
            "name": "PageNum",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "PageSize",
            "in": "query",
            "schema": {
              "maximum": 2147483647,
              "minimum": 0,
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "ApiKey",
            "in": "query",
            "description": "Api Key Authentication"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse"
                }
              },
              "application/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse"
                }
              },
              "text/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse"
                }
              }
            }
          }
        }
      }
    },
    "/v1/recommendations/trending": {
      "get": {
        "tags": [
          "Feed"
        ],
        "parameters": [
          {
            "name": "Geo",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ContentType",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ApiKey",
            "in": "query",
            "description": "Api Key Authentication"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/RecommendationsResponseDTO"
                }
              },
              "application/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/RecommendationsResponseDTO"
                }
              },
              "text/json; x-api-version=1.0": {
                "schema": {
                  "$ref": "#/components/schemas/RecommendationsResponseDTO"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "AssetVideoAspectRatio": {
        "enum": [
          "Square",
          "Horizontal",
          "Vertical",
          "Unknown",
          "FourToFive",
          "FiveToFour",
          "ThreeToFour",
          "FourToThree",
          "TwoToOne",
          "OneToTwo",
          "SevenToEight",
          "EightToSeven",
          "TwoToThree",
          "ThreeToOne",
          "ThreeToTwo",
          "OneToThree",
          "ThreeToEight",
          "FiveToOne"
        ],
        "type": "string"
      },
      "ContentMetadata": {
        "type": "object",
        "properties": {
          "competition": {
            "$ref": "#/components/schemas/MetadataEntityIds"
          },
          "competitions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MetadataEntityIds"
            },
            "nullable": true
          },
          "game": {
            "$ref": "#/components/schemas/MetadataEntityIds"
          },
          "team": {
            "$ref": "#/components/schemas/MetadataEntityIds"
          },
          "player": {
            "$ref": "#/components/schemas/MetadataEntityIds"
          },
          "round": {
            "$ref": "#/components/schemas/MetadataEntityIds"
          },
          "season": {
            "$ref": "#/components/schemas/MetadataEntityIds"
          }
        },
        "additionalProperties": false
      },
      "ContentStatus": {
        "enum": [
          "Draft",
          "Active"
        ],
        "type": "string"
      },
      "ContentType": {
        "enum": [
          "Story",
          "Moment",
          "Video",
          "Stream"
        ],
        "type": "string"
      },
      "CreationSettings": {
        "type": "object",
        "properties": {
          "creationTimePeriod": {
            "$ref": "#/components/schemas/ExecutionTimeType"
          },
          "ruleName": {
            "type": "string",
            "nullable": true
          },
          "storyType": {
            "type": "string",
            "nullable": true
          },
          "contentType": {
            "type": "string",
            "nullable": true,
            "writeOnly": true
          }
        },
        "additionalProperties": false
      },
      "EntityIdType": {
        "enum": [
          "WscId",
          "ServiceProviderId"
        ],
        "type": "string"
      },
      "ExecutionTimeType": {
        "enum": [
          "None",
          "PreGame",
          "InGame",
          "PostGame"
        ],
        "type": "string"
      },
      "GameInfoDto": {
        "type": "object",
        "properties": {
          "gameDate": {
            "type": "string",
            "nullable": true
          },
          "gameStatus": {
            "type": "string",
            "nullable": true
          },
          "stadium": {
            "type": "string",
            "nullable": true
          },
          "participants": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GameParticipantDto"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "GameParticipantDto": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "ids": {
            "$ref": "#/components/schemas/MetadataEntityIds"
          },
          "type": {
            "type": "string",
            "nullable": true
          },
          "score": {
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "GeoTargeting": {
        "type": "object",
        "properties": {
          "includedGeos": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "excludedGeos": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "IContentDTO": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "nullable": true
          },
          "type": {
            "$ref": "#/components/schemas/ContentType"
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "version": {
            "type": "integer",
            "format": "int64"
          },
          "aspectRatios": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AssetVideoAspectRatio"
            },
            "nullable": true
          },
          "status": {
            "$ref": "#/components/schemas/ContentStatus"
          },
          "createTime": {
            "type": "string",
            "format": "date-time"
          },
          "updateTime": {
            "type": "string",
            "format": "date-time"
          },
          "thumbnails": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ThumbnailDTO"
            },
            "nullable": true
          },
          "geoTargeting": {
            "$ref": "#/components/schemas/GeoTargeting"
          },
          "metadata": {
            "$ref": "#/components/schemas/ContentMetadata"
          },
          "executionTimeType": {
            "$ref": "#/components/schemas/ExecutionTimeType"
          },
          "labels": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LabelDTO"
            },
            "nullable": true
          },
          "extraInfo": {
            "type": "object",
            "additionalProperties": {
              "type": "string",
              "nullable": true
            },
            "nullable": true
          },
          "defaultLanguage": {
            "$ref": "#/components/schemas/Language"
          },
          "translatedTitles": {
            "type": "object",
            "properties": {
              "und": {
                "type": "string"
              },
              "af": {
                "type": "string"
              },
              "sq": {
                "type": "string"
              },
              "ar": {
                "type": "string"
              },
              "ar_DZ": {
                "type": "string"
              },
              "ar_BH": {
                "type": "string"
              },
              "ar_EG": {
                "type": "string"
              },
              "ar_IQ": {
                "type": "string"
              },
              "ar_JO": {
                "type": "string"
              },
              "ar_KW": {
                "type": "string"
              },
              "ar_LB": {
                "type": "string"
              },
              "ar_LY": {
                "type": "string"
              },
              "ar_MA": {
                "type": "string"
              },
              "ar_OM": {
                "type": "string"
              },
              "ar_QA": {
                "type": "string"
              },
              "ar_SA": {
                "type": "string"
              },
              "ar_SY": {
                "type": "string"
              },
              "ar_TN": {
                "type": "string"
              },
              "ar_AE": {
                "type": "string"
              },
              "ar_YE": {
                "type": "string"
              },
              "eu": {
                "type": "string"
              },
              "be": {
                "type": "string"
              },
              "bg": {
                "type": "string"
              },
              "ca": {
                "type": "string"
              },
              "zh": {
                "type": "string"
              },
              "zh_HK": {
                "type": "string"
              },
              "zh_CN": {
                "type": "string"
              },
              "zh_SG": {
                "type": "string"
              },
              "zh_TW": {
                "type": "string"
              },
              "hr": {
                "type": "string"
              },
              "cs": {
                "type": "string"
              },
              "da": {
                "type": "string"
              },
              "nl": {
                "type": "string"
              },
              "nl_BE": {
                "type": "string"
              },
              "en": {
                "type": "string"
              },
              "en_AU": {
                "type": "string"
              },
              "en_BZ": {
                "type": "string"
              },
              "en_CA": {
                "type": "string"
              },
              "en_IE": {
                "type": "string"
              },
              "en_JM": {
                "type": "string"
              },
              "en_NZ": {
                "type": "string"
              },
              "en_ZA": {
                "type": "string"
              },
              "en_TT": {
                "type": "string"
              },
              "en_GB": {
                "type": "string"
              },
              "en_US": {
                "type": "string"
              },
              "et": {
                "type": "string"
              },
              "fo": {
                "type": "string"
              },
              "fa": {
                "type": "string"
              },
              "fi": {
                "type": "string"
              },
              "fr": {
                "type": "string"
              },
              "fr_BE": {
                "type": "string"
              },
              "fr_CA": {
                "type": "string"
              },
              "fr_LU": {
                "type": "string"
              },
              "fr_CH": {
                "type": "string"
              },
              "gd": {
                "type": "string"
              },
              "de": {
                "type": "string"
              },
              "de_AT": {
                "type": "string"
              },
              "de_LI": {
                "type": "string"
              },
              "de_LU": {
                "type": "string"
              },
              "de_CH": {
                "type": "string"
              },
              "el": {
                "type": "string"
       

# --- truncated at 32 KB (120 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/wsc-sports/refs/heads/main/openapi/wsc-sports-blaze-feed-api.json