> ## Documentation Index
> Fetch the complete documentation index at: https://docs.moonup.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# List your gift-card listings

> Yours in this category, filtered by `status`. The seller is the key's own
account — there is no parameter to read someone else's.




## OpenAPI

````yaml /openapi.yaml get /v1/offers/gift-cards/my
openapi: 3.1.0
info:
  title: MoonUP Seller API
  version: 1.0.0
  summary: List and manage your offers from your own tools.
  description: >
    Everything a seller's bot needs to keep a catalogue of listings up to date:

    create a listing, restock it, unpublish it, archive it.


    Each category has its own paths — `/v1/offers/accounts`,

    `/v1/offers/currency` and so on — with its own fields. You integrate with

    the categories you sell in, and a category added to the platform later

    leaves yours untouched.


    This is the public surface. The cabinet's own screens — payouts, disputes,

    account settings — are not part of it and an API key does not reach them.


    ## Authentication


    Create a key in the cabinet under **Seller → API keys**. It is shown once.

    Send it on every request:


    ```

    Authorization: Bearer moonup_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

    ```


    There is nothing to exchange it for — no short-lived token sits in between.

    HTTPS only. Keep the key in an environment variable or your CI's secret

    store, never in a repository.


    A key may be pinned to a list of addresses when you create it (up to 16

    addresses or subnets). An empty list means any address.


    ## Creating a listing


    Categories do not sell the same thing, so they do not ask for the same

    fields, and each one's create call takes only its own. An accounts listing

    has a price and a picture; a currency listing has a product, a price per

    unit and a stock, and no picture at all; a gift card is a code, so it has

    no manual handover time to promise.


    What every category does share is `attributes` — its own field list, which

    varies by game and is versioned. That one you read at runtime:

        GET /v1/offers/games/{game}/categories/{category_slug}/schema

    A full pass looks like this:


    1. `GET /v1/offers/games` — pick a game, keep its `slug`.

    2. `GET /v1/offers/games/{game}/categories` — pick a category.

    3. `GET /v1/offers/games/{game}/categories/{category_slug}/schema` — read
       `attributes`.
    4. `POST /v1/offers/images` with the picture as the body. Repeat per
       picture, collect the `image_url`s. Skip it for a category with no
       gallery.
    5. `POST /v1/offers/{category}` — the listing is created as a `draft`.

    6. `POST /v1/offers/{category}/{id}/publish` — it goes on the marketplace.


    ## Statuses


    A new listing is a `draft`: yours, and nobody else's to see. `publish`

    makes it `active`, and buyers can buy it from that moment — nothing reviews

    it first. Editing changes nothing about where a listing stands: an `active`

    one stays live, a `draft` stays a draft.


    `unpublish` takes an `active` listing back to `draft`. `archived` is the end
    of

    the line: `DELETE` retires a listing for good and keeps it readable to you.

    `sold` follows orders, not calls: the last unit went to a closed order. A

    listing whose stock is all in open orders stays `active`, and a cancelled

    order puts the stock back.


    Moderation can send a live listing back as `changes_requested`: it leaves

    the marketplace, and `moderation_reason_code` with `moderation_note` say

    what to fix. Your next `PATCH` makes it a `draft`; `publish` it once it is

    fixed. A listing moderation removes for breaking the rules outright is

    deleted: every call on it answers `404`.


    ## Rate limits


    | | Budget |

    |---|---|

    | Reads | 500 requests per minute |

    | Writes | 250 requests per minute |

    | Writes to one offer | 5 per minute and 10 per hour |


    Going over answers `429`. It is temporary: wait and retry, the key stays

    valid. Up to 5 keys per account — create the second one ahead of time so

    you can rotate without downtime.


    ## Errors


    Every failure answers with the same body, a stable snake_case code:


    ```json

    { "error": "delivery_instructions_required" }

    ```


    Branch on `error`, not on the message — there is no message.
servers:
  - url: https://api.moonup.gg
    description: Production
security:
  - api_key: []
tags:
  - name: Catalog
    description: |
      What can be listed, and what each category's fields are. Public: these
      read without a key, so you can explore before you have one.
  - name: Accounts
    description: Game accounts, sold whole — one price, one picture.
  - name: Top-ups
    description: Top-up packs, handed over by one of the platform's delivery methods.
  - name: Gift cards
    description: Fixed-denomination codes, handed over instantly.
  - name: Currency
    description: In-game currency, priced per unit out of a stock you keep.
  - name: Pictures
    description: Where an offer's images come from.
paths:
  /v1/offers/gift-cards/my:
    get:
      tags:
        - Gift cards
      summary: List your gift-card listings
      description: >
        Yours in this category, filtered by `status`. The seller is the key's
        own

        account — there is no parameter to read someone else's.
      operationId: listGiftCardOffers_gift_card
      parameters:
        - name: status
          in: query
          description: |
            Comma-separated, any of `draft`, `active`, `changes_requested`,
            `sold`, `archived`. Left out, it is every status but `sold`.
            A status nothing matches is an empty list, not an error.
          schema:
            type: string
            examples:
              - active,draft
        - name: game
          in: query
          description: Narrow to one game, by slug.
          schema:
            type: string
        - name: q
          in: query
          description: Narrow by title.
          schema:
            type: string
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  offers:
                    type: array
                    items:
                      $ref: '#/components/schemas/GiftCardRow'
                  total:
                    type: integer
                    format: int64
                    description: How many listings match the filter, across every page.
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  parameters:
    Limit:
      name: limit
      in: query
      description: Page size. Absent or 0 is 20; anything above 100 is 100.
      schema:
        type: integer
        minimum: 0
        maximum: 100
        default: 20
    Offset:
      name: offset
      in: query
      description: How many rows to skip.
      schema:
        type: integer
        minimum: 0
        default: 0
  schemas:
    GiftCardRow:
      allOf:
        - $ref: '#/components/schemas/RowBase'
        - type: object
          properties:
            price:
              type: integer
              format: int64
              description: US cents.
            currency:
              type: string
              description: Always `USD`.
            images:
              type: array
              items:
                type: string
                format: uri
            delivery_method:
              type:
                - string
                - 'null'
              description: The key this listing hands over by.
            stock:
              type: integer
              description: Codes still available.
    RowBase:
      type: object
      description: What every category's list row carries.
      properties:
        id:
          type: string
          format: uuid
        title:
          type: string
        status:
          type: string
          enum:
            - draft
            - active
            - changes_requested
            - sold
            - archived
          description: The same values an offer's own `status` takes.
        updated_at:
          type:
            - string
            - 'null'
          format: date-time
        game_name:
          type: string
        game_slug:
          type: string
        game_icon_url:
          type:
            - string
            - 'null'
          format: uri
    Error:
      type: object
      description: The one failure shape this API answers with.
      properties:
        error:
          type: string
          description: A stable snake_case code. Branch on this.
          examples:
            - delivery_instructions_required
      required:
        - error
  responses:
    Unauthorized:
      description: |
        The key is unknown, revoked, or the request came from an address
        outside the key's list. Which check failed is not disclosed.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            unauthorized:
              value:
                error: unauthorized
  securitySchemes:
    api_key:
      type: http
      scheme: bearer
      description: Your API key, from the cabinet under **Seller → API keys**.

````