GamerPower Worth API

Aggregate live giveaway counts and USD value estimation.

Documentation

Specifications

Schemas & Data

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/gamerpower-worth-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

gamerpower-worth-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: GamerPower Filter Worth API
  description: 'The GamerPower API (gamerpower.com) is a free, no-authentication REST API that

    aggregates live game giveaways across PC, console, mobile, and DRM-free platforms.

    It tracks free games, beta keys, DLC drops, and in-game loot offers from sources

    such as Steam, Epic Games Store, GOG, Ubisoft Connect, EA Origin, itch.io, Battle.net,

    PlayStation, Xbox, Switch, Android, iOS, and VR. The API returns JSON, supports

    multi-value platform/type filtering, sorts by date/value/popularity, and exposes

    a `/worth` endpoint that aggregates the live USD value of the active giveaway pool.

    Attribution to GamerPower.com is required for personal and commercial use.

    '
  version: 1.0.0
  contact:
    name: GamerPower
    url: https://www.gamerpower.com/api-read
  license:
    name: GamerPower Attribution
    url: https://www.gamerpower.com/api-read
  x-generated-from: documentation+live-api
  x-source-url: https://www.gamerpower.com/api-read
  x-last-validated: '2026-05-30'
servers:
- url: https://www.gamerpower.com/api
  description: GamerPower production API
tags:
- name: Worth
  description: Aggregate live giveaway counts and USD value estimation.
paths:
  /worth:
    get:
      tags:
      - Worth
      summary: GamerPower Get Total Worth Estimation
      description: 'Returns the count of currently live giveaways and the aggregate USD value

        estimation of the live giveaway pool.

        '
      operationId: getWorth
      responses:
        '200':
          description: Aggregate count and USD worth of live giveaways.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorthEstimation'
              examples:
                GetWorth200Example:
                  summary: Default getWorth 200 response
                  x-microcks-default: true
                  value:
                    active_giveaways_number: 102
                    worth_estimation_usd: '410.83'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    WorthEstimation:
      type: object
      description: Aggregate count and USD worth of currently live giveaways.
      required:
      - active_giveaways_number
      - worth_estimation_usd
      properties:
        active_giveaways_number:
          type: integer
          description: Count of currently active giveaways.
          example: 102
        worth_estimation_usd:
          type: string
          description: Aggregate USD value of the live giveaway pool, formatted as a decimal string.
          example: '410.83'