LogoLogo
  • Welcome
  • Getting Started
  • Integration Methods
  • SDKs
  • Tebex for Unreal Engine 5
  • Tebex for Unity Engine
  • Webstore Builder
    • Overview
    • Getting Started
    • Twig
      • Tags
      • Filters
      • Functions
    • Global Variables
      • basket
      • store
      • page
    • Pages
      • index.html
      • checkout.html
      • username.html
      • options.html
      • package.html
      • cms/page.html
      • category.html
      • layout.html
    • Sidebar Modules
      • module.communitygoal.html
      • module.featuredpackage.html
      • module.giftcardbalance.html
      • module.goal.html
      • module.payments.html
      • module.serverstatus.html
      • module.textbox.html
      • module.topdonator.html
    • Assets
    • Schema
    • Developer Plan
    • Footer
    • Guides
      • Package Slugs
  • Headless API
    • Overview
    • Getting Your Listings
    • Creating a Basket
    • Adding Packages
    • Gifting Packages
    • Applying Discounts / Creator Codes
    • Directing to Checkout
    • Endpoints
    • Postman Config
    • Example Integration
  • Checkout API
    • Overview
    • Headers and Authentication
    • Start the Checkout Process
    • Checkout Webhooks
    • Endpoints
    • Errors
    • Postman Config
  • Tebex.js
    • Overview
    • Integration
    • Events
    • Web Components
    • Custom Render Location
    • NPM
    • GitHub
  • Webhooks
    • Overview
    • Login Webhooks
  • Game Server API
    • Overview
    • Authentication
    • Error Handling
    • Endpoints
  • Affiliate API
    • Overview
    • Referrals
    • Game Types
    • Webhooks
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Affiliate API

Game Types

Get Game Types

GET https://affiliate.tebex.io/api/game-types

Retrieve a list of all games that the Tebex Platform supports.

Headers

Name
Type
Description

Authorization

string

Bearer <Your API Key>

{
  "data": [
    {
      "id": 1,
      "name": "Minecraft: Java Edition"
    },
    {
      "id": 2,
      "name": "Minecraft (Bedrock)"
    },
    {
      "id": 3,
      "name": "Minecraft Offline"
    },
    {
      "id": 4,
      "name": "Unturned"
    },
    {
      "id": 5,
      "name": "Rust"
    },
    {
      "id": 6,
      "name": "7 Days to Die"
    },
    {
      "id": 7,
      "name": "Garry's Mod"
    },
    {
      "id": 8,
      "name": "Counter-Strike: Global Offensive"
    },
    {
      "id": 9,
      "name": "Team Fortress 2"
    },
    {
      "id": 10,
      "name": "Hurtworld"
    },
    {
      "id": 11,
      "name": "ARK: Survival Evolved"
    },
    {
      "id": 12,
      "name": "Space Engineers"
    },
    {
      "id": 13,
      "name": "ATLAS"
    },
    {
      "id": 14,
      "name": "GTA V"
    },
    {
      "id": 15,
      "name": "FiveM"
    }
  ]
}
PreviousReferralsNextWebhooks

Last updated 1 year ago

Was this helpful?