---
title: "Get challenges for a game"
method: GET
path: "/api/games/{id}/challenges"
tags: ["Challenges"]
---

# Get challenges for a game

`GET /api/games/{id}/challenges`

Retrieve all active challenges for a specific game

## Path parameters

- `id` string, uuid, required

## Response `200`

List of challenges

- object
  - `data` object[]
    - `id` string, uuid, required — Unique challenge identifier
    - `description` string, required — Challenge description
    - `game_id` string, uuid, required — Associated game ID
    - `mission_id` string, uuid, required — Associated mission ID
    - `target_level` integer, required — Required level to complete challenge
    - `data` object — Challenge conditions (e.g., score >= 1000)
    - `active` boolean, required — Whether the challenge is active

## Other responses

- `400` — Invalid UUID

---

[API](https://skmtc.net/decentraland/apis/realm-provider-api.md) · [All operations](https://skmtc.net/decentraland/apis/realm-provider-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/decentraland/realm-provider-api/revisions/d94e0e0f1821/schema)
