curl -X GET "https://gachabe-staging.fly.dev/api/v1/chests/550e8400-e29b-41d4-a716-446655440000" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/vnd.api+json"
{
  "data": {
    "type": "chest",
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "attributes": {
      "name": "Legendary Dragon Chest",
      "description": "A mystical chest containing the rarest dragon-themed collectibles. Each opening guarantees at least one legendary item.",
      "images": [
        "https://example.com/images/dragon-chest-closed.png",
        "https://example.com/images/dragon-chest-open.png"
      ]
    },
    "relationships": {}
  },
  "meta": {}
}
Retrieve detailed information about a specific chest by its unique identifier.

Path Parameters

id
string
required
Unique identifier of the chest to retrieve. Must be a valid UUID format.

Query Parameters

include
string
Relationship paths to include in the response. Currently no relationships are supported for individual chest requests.
fields
object
Limit response fields to only those specified.
curl -X GET "https://gachabe-staging.fly.dev/api/v1/chests/550e8400-e29b-41d4-a716-446655440000" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/vnd.api+json"
{
  "data": {
    "type": "chest",
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "attributes": {
      "name": "Legendary Dragon Chest",
      "description": "A mystical chest containing the rarest dragon-themed collectibles. Each opening guarantees at least one legendary item.",
      "images": [
        "https://example.com/images/dragon-chest-closed.png",
        "https://example.com/images/dragon-chest-open.png"
      ]
    },
    "relationships": {}
  },
  "meta": {}
}

Response Fields

data
object
required
The chest resource object
meta
object
Additional metadata about the response

Common Use Cases

curl -X GET "https://gachabe-staging.fly.dev/api/v1/chests/550e8400-e29b-41d4-a716-446655440000" \
  -H "Authorization: Bearer YOUR_API_KEY"
Use this when showing detailed information about a chest before purchase or opening.
Always validate the chest ID format before making requests. Invalid UUIDs will result in a 400 Bad Request error.
Use field selection to reduce response size and improve performance when you don’t need all chest attributes.