---
title: "List user packs"
method: GET
path: "/packs"
tags: ["Packs"]
---

# List user packs

`GET /packs`

Returns a dashboard view containing all emoji and sticker packs created by or owned by the authenticated user. This includes pack metadata such as name, description, type, and cover image.

## Response `200`

Success

- PackDashboardResponse
  - `emoji` object, required — Dashboard section for emoji packs
    - `installed_limit` integer, required — Maximum number of packs the user can install
    - `created_limit` integer, required — Maximum number of packs the user can create
    - `installed` PackSummaryResponse[], required — List of packs the user has installed
      - `id` string, required — The unique identifier (snowflake) for the pack
      - `name` string, required — The display name of the pack
      - `description` string, nullable, required — The description of the pack
      - `type` 'emoji' | 'sticker', required — The type of expression pack (emoji or sticker)
      - `creator_id` string, required — The ID of the user who created the pack
      - `created_at` string, date-time, required — ISO8601 timestamp of when the pack was created
      - `updated_at` string, date-time, required — ISO8601 timestamp of when the pack was last updated
      - `installed_at` string, date-time — ISO8601 timestamp of when the pack was installed by the user
    - `created` PackSummaryResponse[], required — List of packs the user has created
      - `id` string, required — The unique identifier (snowflake) for the pack
      - `name` string, required — The display name of the pack
      - `description` string, nullable, required — The description of the pack
      - `type` 'emoji' | 'sticker', required — The type of expression pack (emoji or sticker)
      - `creator_id` string, required — The ID of the user who created the pack
      - `created_at` string, date-time, required — ISO8601 timestamp of when the pack was created
      - `updated_at` string, date-time, required — ISO8601 timestamp of when the pack was last updated
      - `installed_at` string, date-time — ISO8601 timestamp of when the pack was installed by the user
  - `sticker` object, required — Dashboard section for sticker packs
    - `installed_limit` integer, required — Maximum number of packs the user can install
    - `created_limit` integer, required — Maximum number of packs the user can create
    - `installed` PackSummaryResponse[], required — List of packs the user has installed
      - `id` string, required — The unique identifier (snowflake) for the pack
      - `name` string, required — The display name of the pack
      - `description` string, nullable, required — The description of the pack
      - `type` 'emoji' | 'sticker', required — The type of expression pack (emoji or sticker)
      - `creator_id` string, required — The ID of the user who created the pack
      - `created_at` string, date-time, required — ISO8601 timestamp of when the pack was created
      - `updated_at` string, date-time, required — ISO8601 timestamp of when the pack was last updated
      - `installed_at` string, date-time — ISO8601 timestamp of when the pack was installed by the user
    - `created` PackSummaryResponse[], required — List of packs the user has created
      - `id` string, required — The unique identifier (snowflake) for the pack
      - `name` string, required — The display name of the pack
      - `description` string, nullable, required — The description of the pack
      - `type` 'emoji' | 'sticker', required — The type of expression pack (emoji or sticker)
      - `creator_id` string, required — The ID of the user who created the pack
      - `created_at` string, date-time, required — ISO8601 timestamp of when the pack was created
      - `updated_at` string, date-time, required — ISO8601 timestamp of when the pack was last updated
      - `installed_at` string, date-time — ISO8601 timestamp of when the pack was installed by the user

## Other responses

- `400` — Bad Request - The request was malformed or contained invalid data
- `401` — Unauthorized - Authentication is required or the token is invalid
- `403` — Forbidden - You do not have permission to perform this action
- `429` — Too Many Requests - You are being rate limited
- `500` — Internal Server Error - An unexpected error occurred

---

[API](https://skmtc.dev/fluxer/apis/fluxer-api.md) · [All operations](https://skmtc.dev/fluxer/apis/fluxer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fluxer/fluxer-api/revisions/d9c706133cc5/schema)
