Game

Epic Free Games

0calls
1 credits / call

Great news for bargain hunters! Want to know first which big titles Epic Store is giving away this week?

GET
uapis.cn
/api/v1/game/epic-free

Overview

This endpoint helps you track Epic Games Store's weekly free game promotions in real-time. No parameters needed, just call it to get complete information about all current free games, including game covers, original prices, remaining time, etc. Never miss your favorite free games again!

Use Cases

  • Develop game news apps or websites
  • Create Epic free game push bots
  • Provide game collection suggestions for users
  • Build personal game library management tools
Tip

About Time Format For convenience in different scenarios, we provide both readable time strings (e.g., 2025/01/10 00:00:00) and 13-digit millisecond timestamps. Use strings for frontend display, timestamps for program logic.

Response

200 / OK

Retrieval successful! Free games acquired, returns current Epic Games Store's free game bundle.

JSON
{
  // Operation result description.
  "message": "Retrieval successful",
  // Free game list array.
  "data": [
    {
      // The unique identifier ID of the game.
      "id": "epic-game-123456",
      // The full title name of the game.
      "title": "Control Ultimate Edition",
      // The URL address of the game cover image.
      "cover": "https://cdn1.epicgames.com/salesEvent/salesEvent/EGS_ControlUltimateEdition_RemedyEntertainment_S1_2560x1440-a2a40e2b9164c2c0e031bd4e88bacd01.jpg",
      // The original price of the game, in RMB yuan.
      "original_price": 40,
      // The formatted original price description string.
      "original_price_desc": "¥40.00",
      // The description of the game.
      "description": "In this supernatural action-adventure game, you will master a series of supernatural abilities, customize weapons, and explore the mysterious Federal Control Bureau.",
      // The publisher or seller of the game.
      "seller": "Remedy Entertainment",
      // Whether the game is free now.
      "is_free_now": true,
      // The readable string format of the free start time.
      "free_start": "2025/01/10 00:00:00",
      // The 13-digit millisecond timestamp of the free start time.
      "free_start_at": 1736438400000,
      // The readable string format of the free end time.
      "free_end": "2025/01/17 00:00:00",
      // The 13-digit millisecond timestamp of the free end time.
      "free_end_at": 1737043200000,
      // The link to the game's detail page on the Epic Games Store.
      "link": "https://store.epicgames.com/zh-CN/p/control"
    }
  ]
}

500 / Internal Server Error

Epic Games Free Game Service is temporarily unavailable, please try again later

JSON
{
  "code": "SERVICE_UNAVAILABLE",
  "message": "Epic Games Free Game Service is temporarily unavailable, please try again later"
}