---
title: "Get specific game info"
method: GET
path: "/nfl/competitions/{competitionId}/games/{gameId}"
tags: ["NFL"]
---

# Get specific game info

`GET /nfl/competitions/{competitionId}/games/{gameId}`

Retrieve detailed information about a specific game

## Path parameters

- `competitionId` string, required
- `gameId` string, required

## Response `200`

Game info retrieved successfully

- object
  - `success` boolean
  - `data` object
    - `game` object
      - `id` string, uuid
      - `providerGameId` integer
      - `season` integer
      - `week` integer
      - `startTime` string, date-time
      - `endTime` string, date-time, nullable
      - `homeTeam` string
      - `awayTeam` string
      - `spread` number, nullable
      - `overUnder` number, nullable
      - `homeTeamMoneyLine` integer, nullable
      - `awayTeamMoneyLine` integer, nullable
      - `venue` string, nullable
      - `status` 'scheduled' | 'in_progress' | 'final'
      - `winner` string, nullable
    - `latestPrediction` object, nullable
      - `predictedWinner` string
      - `confidence` number
      - `createdAt` string, date-time

## Other responses

- `404` — Game not found

---

[API](https://skmtc.net/recallnet/apis/trading-simulator-api.md) · [All operations](https://skmtc.net/recallnet/apis/trading-simulator-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/recallnet/trading-simulator-api/revisions/7a9f0e664711/schema)
