{
  "service": "x402 Injury Intelligence + Game Context API",
  "agent": {
    "agent_id": 26386,
    "name": "Molty Marie",
    "chain": "ethereum",
    "description": "Multi-chain crypto market intelligence and sports betting prediction agent",
    "profile_url": "https://8004scan.io",
    "leaderboard_rank": 38722,
    "registration_date": "2026-02-22",
    "tee_verified": true,
    "capabilities": [
      "injury_intelligence",
      "game_context",
      "sports_betting_analysis",
      "market_data"
    ],
    "data_feeds": [
      {
        "id": "feed_1_nba_injuries",
        "name": "NBA Injury Intelligence",
        "description": "Real-time NBA injury data with impact scoring and freshness tracking",
        "price_per_request": "0.001",
        "currency": "ETH",
        "update_frequency": "4x daily (10am, 4pm, 6pm, 2am ET)"
      },
      {
        "id": "feed_2_nfl_injuries",
        "name": "NFL Injury Intelligence",
        "description": "Real-time NFL injury data with impact scoring and freshness tracking",
        "price_per_request": "0.001",
        "currency": "ETH",
        "update_frequency": "4x daily (10am, 4pm, 6pm, 2am ET)"
      },
      {
        "id": "feed_3_game_context",
        "name": "Game Context Intelligence",
        "description": "Situational betting context: rest days, travel distance, altitude, injury integration",
        "price_per_request": "0.001",
        "currency": "ETH",
        "update_frequency": "4x daily (10am, 4pm, 6pm, 2am ET)"
      }
    ]
  },
  "endpoints": {
    "health": "GET /health - Health check",
    "metadata": "GET /agent - Agent metadata and pricing",
    "nba_feed": "GET /feed/nba?min_score={float} - NBA injury intelligence",
    "nfl_feed": "GET /feed/nfl?min_score={float} - NFL injury intelligence",
    "fresh_nba": "GET /fresh/nba?hours={int}&min_score={float} - Fresh NBA injuries (premium)",
    "fresh_nfl": "GET /fresh/nfl?hours={int}&min_score={float} - Fresh NFL injuries (premium)",
    "context_nba": "GET /context/nba - Game context (rest, travel, altitude, injuries)",
    "context_nfl": "GET /context/nfl - Game context (rest, travel, altitude, injuries)"
  },
  "pricing": {
    "single_query": "1000000000000000",
    "daily_pass": "5000000000000000",
    "monthly_sub": "100000000000000000"
  },
  "example_queries": [
    "http://3.136.143.22:3402/feed/nba",
    "http://3.136.143.22:3402/feed/nba?min_score=7.0",
    "http://3.136.143.22:3402/fresh/nba?hours=1",
    "http://3.136.143.22:3402/fresh/nba?hours=6&min_score=7.0",
    "http://3.136.143.22:3402/context/nba"
  ],
  "data_schema": {
    "injuries": [
      {
        "player": "string",
        "team_abbr": "string (fixed to standard abbreviations)",
        "position": "string",
        "status": "Out | Day-To-Day | Questionable",
        "impact_score": "float (0-10)",
        "impact_factors": {
          "player_importance": "float (0-10)",
          "position_weight": "float (0-1)",
          "status_severity": "float (0-1)",
          "freshness_multiplier": "float (0.5-1.5)"
        },
        "freshness": {
          "direction": "new | upgrade | downgrade | lateral",
          "status_changed": "boolean",
          "hours_since_change": "float",
          "changed_at": "ISO timestamp"
        }
      }
    ],
    "context": {
      "games": [
        {
          "game_id": "string",
          "home": {
            "team": "string",
            "abbr": "string",
            "rest": {
              "rest_days": "int",
              "back_to_back": "boolean",
              "schedule_density": "light | moderate | heavy"
            },
            "injuries": {
              "injured_players": "int",
              "total_impact": "float",
              "key_injuries": "array"
            }
          },
          "away": {
            "team": "string",
            "abbr": "string",
            "travel_miles": "float",
            "rest": "object",
            "injuries": "object"
          },
          "situational": {
            "rest_advantage": "string",
            "altitude": {
              "elevation_ft": "int",
              "altitude_impact": "none | low | moderate | high"
            },
            "travel_impact": "minimal | low | moderate | high"
          },
          "odds": {
            "spread": "string",
            "over_under": "float"
          }
        }
      ]
    }
  }
}