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

# List competing offers for a currency offer

> Retrieve a list of other sellers' currency offers competing for the same product.



## OpenAPI

````yaml /api/openapi.json get /v2/currency-offers/{currencyOffer}/other-offers
openapi: 3.1.0
info:
  title: GameBoost
  version: 2.0.0
servers:
  - url: https://api.gameboost.com
    description: GameBoost API
security:
  - BearerTokenSecurityScheme: []
tags:
  - name: Games
    description: Games
  - name: Seller Breaks
    description: Seller Breaks
  - name: Payments
    description: Payments
  - name: Payouts
    description: Payouts
  - name: Account Offers
    description: Account Offers
  - name: Account Orders
    description: Account Orders
  - name: Item Offers
    description: Item Offers
  - name: Item Orders
    description: Item Orders
  - name: Currency Offers
    description: Currency Offers
  - name: Currency Orders
    description: Currency Orders
  - name: Webhooks
    description: Webhook events sent to your endpoints when specific actions occur
  - name: Gift Card Offers
    description: Gift Card Offers
  - name: Gift Card Orders
    description: Gift Card Orders
paths:
  /v2/currency-offers/{currencyOffer}/other-offers:
    get:
      tags:
        - Currency Offers
      summary: List competing offers for a currency offer
      description: >-
        Retrieve a list of other sellers' currency offers competing for the same
        product.
      parameters:
        - name: currencyOffer
          in: path
          description: >-
            The ID of the currency offer. Can be retrieved from the list of
            currency offers.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: >-
            Competing currency offers (other sellers) for the same game and
            grouping
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/CompetingCurrencyOffer'
        '401':
          $ref: '#/components/responses/ErrorUnauthenticated'
        '403':
          $ref: '#/components/responses/ErrorForbidden'
        '404':
          $ref: '#/components/responses/ErrorNotFound'
        '429':
          $ref: '#/components/responses/ErrorRateLimited'
      security:
        - BearerToken: []
components:
  schemas:
    CompetingCurrencyOffer:
      description: >-
        A minimal competitor currency offer (same game + grouping key) exposed
        for market intelligence. Sensitive seller-only fields (description,
        parameters, external_id, views, etc.) are intentionally omitted.
      type: object
      properties:
        id:
          description: Unique identifier for the competing currency offer
          type: integer
        currency_unit:
          $ref: '#/components/schemas/CurrencyUnit'
        seller:
          description: Public seller information
          type: object
          nullable: true
          properties:
            id:
              description: Seller user id
              type: integer
            username:
              description: Public seller username
              type: string
        stock:
          description: Available quantity of currency units in stock
          type: integer
        min_quantity:
          description: Minimum quantity that can be purchased in a single order
          type: integer
        delivery_time:
          $ref: '#/components/schemas/DeliveryTime'
        delivery_method:
          description: Delivery method used by the competing seller
          enum:
            - none
            - username
            - login
            - trade
            - auction
            - gift
            - redeem
            - mail
          type: string
          nullable: true
        delivery_method_data:
          description: >-
            Resolved delivery method metadata after game-specific label
            overrides
          type: object
          nullable: true
        base_currency:
          description: Base currency code used for pricing (always EUR)
          type: string
          example: EUR
        price_eur:
          description: Price per unit in EUR
          type: string
        price_usd:
          description: Price per unit in USD, calculated using current exchange rates
          type: string
    CurrencyUnit:
      description: Currency unit object representing a denomination of in-game currency
      type: object
      properties:
        slug:
          description: URL-friendly identifier for the currency unit
          type: string
        currency_name:
          description: Full name of the in-game currency (e.g., "Gold", "Credits")
          type: string
        name:
          description: Display name of this unit denomination
          type: string
        symbol:
          description: Symbol or abbreviation for the unit (e.g., "K", "M", "B")
          type: string
        multiplier:
          description: >-
            Numeric multiplier for unit conversion (e.g., 1000 for thousands,
            1000000 for millions)
          type: integer
    DeliveryTime:
      description: Delivery time object representing expected delivery duration
      type: object
      properties:
        duration:
          description: Numeric value representing the delivery time
          type: integer
        unit:
          description: Time unit for the duration (minutes, hours, days)
          enum:
            - minutes
            - hours
            - days
          type: string
        format:
          description: Human-readable delivery time (e.g., "2 hr")
          type: string
        format_long:
          description: Extended format delivery time (e.g., "2 hours")
          type: string
        seconds:
          description: Total delivery time converted to seconds
          type: integer
  responses:
    ErrorUnauthenticated:
      description: >-
        User is not authenticated, happens when the API key is missing, expired
        or invalid
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                example: Unauthenticated.
    ErrorForbidden:
      description: >-
        User is not authorized to perform this action, happens when you try to
        access a resource you do not have permission to access
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                example: This action is unauthorized.
    ErrorNotFound:
      description: Resource not found, happens when the requested resource does not exist
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                example: Resource not found.
    ErrorRateLimited:
      description: >-
        Rate limit exceeded, happens when you exceed the rate limit for the
        endpoint
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                example: Too many requests.
  securitySchemes:
    BearerToken:
      type: http
      scheme: bearer
      bearerFormat: JWT

````