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

# Get top up offer



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/top-ups/{identifier}
openapi: 3.0.3
info:
  title: LoLBoost Seller API
  version: 1.0.0
  description: Seller API for syncing account offers and item offers with LoLBoost.
servers:
  - url: https://api.lolboost.gg
    description: LoLBoost Seller API
security:
  - BearerAuth: []
tags:
  - name: Accounts
    description: Create, list, update, archive and bulk remove account offers.
  - name: Items
    description: Create, list, update, archive and bulk remove item offers.
  - name: Top Ups
    description: Create, list, update, archive and bulk manage top up offers.
  - name: Images
    description: Upload, list and delete seller gallery images for listings.
  - name: Webhooks
    description: Webhook payload examples for sync events.
paths:
  /api/v1/top-ups/{identifier}:
    get:
      tags:
        - Top Ups
      summary: Get top up offer
      parameters:
        - name: identifier
          in: path
          required: true
          description: LoLBoost ID or external_id
          schema:
            type: string
            example: seller-account-123
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TopUp'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - BearerAuth: []
components:
  schemas:
    TopUp:
      type: object
      properties:
        id:
          type: integer
          example: 123
        external_id:
          type: string
          example: TOPUP-EUW-1000-001
        game:
          type: string
          example: league-of-legends
        game_name:
          type: string
          example: League of Legends
        service_label:
          type: string
          example: Top Ups
        offer_key:
          type: string
          example: 1000-coins
        offer_title:
          type: string
          example: 1000 Coins
        offer_amount:
          type: number
          example: 1000
        offer_unit:
          type: string
          example: Coins
        region:
          type: string
          nullable: true
          example: EU
        platform:
          type: string
          nullable: true
          example: PC
        price:
          type: integer
          description: Price in cents.
          example: 999
        currency:
          type: string
          example: EUR
        stock:
          type: integer
          example: 999
        min_quantity:
          type: integer
          example: 1
        waiting_time_value:
          type: integer
          example: 10
        waiting_time_unit:
          type: string
          enum:
            - minutes
            - hours
            - days
          example: minutes
        instructions:
          type: string
          nullable: true
        image:
          type: string
          format: uri
          nullable: true
        active:
          type: boolean
          example: true
        status:
          type: string
          enum:
            - draft
            - pending
            - listed
            - archived
          example: listed
        created_at:
          type: string
          format: date-time
          nullable: true
        updated_at:
          type: string
          format: date-time
          nullable: true
    Error:
      type: object
      properties:
        message:
          type: string
          example: Unauthenticated.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````