# Import the Game Catalog

#### 🎮 How to Add the Games to Your Site

**Step 1: Browse and Pick Games**

1. Go to[ widgets.playgama.com](https://widgets.playgama.com)
2. Sign up or log in to your account\
   If you’re not logged in, the games you collect will not include **your unique** **CLID**. After logging in, a **CLID** will be automatically added to your selected games.
3. Choose **how** you want to get games:

* Download the full game catalog as a **JSON file**
* **Use filters** to narrow down by genre, platform, or category — or just **scroll through and manually click** the games you like.\
  Then click Download to get a custom file with your selected games.
* **Copy** an individual game's embed code:\
  Open the game card and copy the iframe code to embed it directly on your site.

🖼️ If you’re using the iframe link and not downloading the JSON file, but still **need visual assets** (thumbnails or icons), you can:

* Copy **direct image links** from the game card
* Or **download a ZIP archive** with thumbnails and icons, also available on the game card

***

**Step 2: Explore the JSON File**

The JSON file contains all the game info you need — title, genre, description, images, and most importantly:

```json
"gameURL": "https://playgama.com/export/game/popping-candies"
```

This `gameURL` is the direct link used to embed the game on your site.

***

**Step 3: Embed the Games**

To add a game to your site, use the `gameURL` value like this:

```html
<iframe src="https://playgama.com/export/game/popping-candies" frameborder="0" width="100%" height="600px"></iframe>
```

You’ll need to add a separate `<iframe>` like this for each game you want to embed. Just replace the `src` with the corresponding `gameURL` from your JSON file.

You can change `width` and `height` to fit your layout.

***

✅ That’s it! The game runs from our servers, so you don’t need to host anything — just plug and play.

**Want to see a demo or have questions? Drop us a line at** [**partners@playgama.com**](mailto:partners@playgama.com) **— let’s talk!**
