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

# Show my offers

> Get list of offers created by the authenticated user. To get a specific offer, pass the 'id' parameter with the offer ID.



## OpenAPI

````yaml /api-docs.json get /api/shop/marketplace/offers/my_offers
openapi: 3.0.0
info:
  title: Currency Marketplace API
  description: API documentation for Currency Marketplace
  version: 1.0.0
servers:
  - url: https://skycoach.gg/
    description: API Server
security: []
tags:
  - name: Currency Marketplace
    description: Currency Marketplace
  - name: Offers
    description: Offers
  - name: Offer Credentials
    description: Offer Credentials
paths:
  /api/shop/marketplace/offers/my_offers:
    get:
      tags:
        - Offers
      summary: Show my offers
      description: >-
        Get list of offers created by the authenticated user. To get a specific
        offer, pass the 'id' parameter with the offer ID.
      operationId: 437a51545af84e26c6c83aba8a414c77
      parameters:
        - name: with_id
          in: query
          description: >-
            ID of a specific offer to retrieve. For getting a specific offer,
            pass the offer ID in this parameter. Optional parameter, not passed
            by default.
          required: false
          schema:
            type: integer
        - name: with_product_id
          in: query
          description: >-
            Filter offers by product currency setting ID
            (product_currency_setting_id).
          required: false
          schema:
            type: integer
        - name: Accept
          in: header
          description: API response format
          required: true
          schema:
            type: string
            default: application/json
            enum:
              - application/json
        - name: offset
          in: query
          schema:
            type: integer
            example: 0
        - name: limit
          in: query
          schema:
            type: integer
            example: 20
        - name: sort_column
          in: query
          description: |-
            Column to sort by.
                 *
                 **Possible values:**
                 *
                 * - **price_per_step**: Sort by price per step
                 * - **guarantee_delivery_time**: Sort by guarantee delivery time
                 * - **status**: Sort by offer status
                 * - **created_at**: Sort by creation date
                 * - **updated_at**: Sort by last update date
          schema:
            type: string
            enum:
              - price_per_step
              - guarantee_delivery_time
              - status
              - created_at
              - updated_at
            example: price_per_step
        - name: sort_direction
          in: query
          description: |-
            Sort direction.
                 *
                 **Possible values:**
                 *
                 * - **asc**: Ascending order (from lowest to highest)
                 * - **desc**: Descending order (from highest to lowest)
          schema:
            type: string
            enum:
              - asc
              - desc
            example: asc
        - name: with_status
          in: query
          description: |-
            Filter by offer status.
                 *
                 **Possible values:**
                 *
                 * - **1** (Draft): Offer is saved as draft and not visible to others
                 * - **2** (Active): Offer is active and visible to customers
                 * - **3** (Not Active): Offer is not active and not visible to customers
                 * - **4** (Need Details): Offer has not passed the review and needs additional details
                 * - **5** (On Review): Offer is under review
                 * - **6** (Sold): There is an order for this offer
                 * - **7** (Transfered): The order for this offer has been completed
                 * - **8** (Review Passed): Offer has passed the review and waiting for activation
          schema:
            type: integer
            enum:
              - 1
              - 2
              - 3
              - 4
              - 5
              - 6
              - 7
              - 8
            example: 3
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                properties:
                  data:
                    description: Array of offers
                    type: array
                    items:
                      properties:
                        id:
                          type: integer
                          example: 123
                        product_id:
                          type: integer
                          example: 14
                        user_id:
                          type: integer
                          example: 456
                        price_per_step:
                          type: number
                          format: float
                          example: 100.5
                        amount:
                          type: number
                          format: float
                          example: 1000
                        min_purchase_amount:
                          type: number
                          format: float
                          example: 100
                        status:
                          $ref: '#/components/schemas/OfferStatus'
                        marketplace_type:
                          type: integer
                          enum:
                            - 1
                            - 2
                          example: 1
                        guarantee_delivery_time:
                          type: integer
                          example: 86400000
                        credential_system_type_id:
                          description: >-
                            Authoritative delivery-mode field. Values: 1 = No
                            Credentials (stock-mode, seller-managed amount), 2 =
                            Single (deprecated — coerced to MULTIPLE on write),
                            3 = Multiple (credential-mode, amount derived from
                            active credentials). Defaults to 3 on create.
                          type: integer
                          example: 3
                          nullable: true
                        description:
                          type: string
                          example: High quality account
                          nullable: true
                        outer_name:
                          type: string
                          example: Premium Account
                          nullable: true
                        internal_name:
                          type: string
                          example: Internal Name
                          nullable: true
                        comment_for_reviewer:
                          type: string
                          example: Please review
                          nullable: true
                        image:
                          type: string
                          example: storage/uploads/image.jpg
                          nullable: true
                        is_enabled:
                          type: boolean
                          example: true
                        is_auto_activate_status:
                          type: boolean
                          example: false
                        data:
                          description: Offer data object with field IDs as keys
                          type: object
                          example:
                            '1': '5'
                            '2': Horde
                            '3': Custom server name
                        screenshots:
                          description: Array of screenshot URLs
                          type: array
                          items:
                            type: string
                            example: >-
                              storage/uploads/product_currency_offer/screenshot/example.jpg
                          nullable: true
                        original_import_price:
                          type: number
                          format: float
                          example: 90
                          nullable: true
                        commission_percent:
                          type: number
                          format: float
                          example: 15
                          nullable: true
                        import_status:
                          type: integer
                          example: 1
                          nullable: true
                        purchased_amount:
                          type: number
                          format: float
                          example: 500
                          nullable: true
                        last_review_comment:
                          type: string
                          example: Need more details
                          nullable: true
                        credentials_recorded:
                          type: boolean
                          example: true
                          nullable: true
                        created_at:
                          type: string
                          format: date-time
                          example: '2024-01-01T00:00:00Z'
                        updated_at:
                          type: string
                          format: date-time
                          example: '2024-01-01T00:00:00Z'
                        deleted_at:
                          type: string
                          format: date-time
                          nullable: true
                      type: object
                  total:
                    description: Total number of offers
                    type: integer
                    example: 100
                type: object
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: Unauthorized
                type: object
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: Forbidden
                type: object
      security:
        - bearerAuth: []
components:
  schemas:
    OfferStatus:
      description: |-
        Offer status enum.
             *
             **Possible values:**
             *
             * - **1** (Draft): Offer is saved as draft and not visible to others
             * - **2** (Active): Offer is active and visible to customers
             * - **3** (Not Active): Offer is not active and not visible to customers
             * - **4** (Need Details): Offer has not passed the review and needs additional details
             * - **5** (On Review): Offer is under review
             * - **6** (Sold): There is an order for this offer
             * - **7** (Transfered): The order for this offer has been completed
             * - **8** (Review Passed): Offer has passed the review and waiting for activation
      type: integer
      enum:
        - 1
        - 2
        - 3
        - 4
        - 5
        - 6
        - 7
        - 8
      example: 3
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````