> ## 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.

# List account offers



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/accounts
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/accounts:
    get:
      tags:
        - Accounts
      summary: List account offers
      parameters:
        - name: filter[search]
          in: query
          schema:
            type: string
        - name: filter[external_id]
          in: query
          schema:
            type: string
        - name: filter[status]
          in: query
          schema:
            type: string
        - name: sort
          in: query
          schema:
            type: string
            example: '-updated_at'
        - name: per_page
          in: query
          schema:
            type: integer
            example: 15
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Account'
                  meta:
                    type: object
                  links:
                    type: object
        '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:
    Account:
      type: object
      properties:
        id:
          type: integer
          example: 123
        external_id:
          type: string
          example: seller-account-123
        lolboost_account_id:
          type: integer
          example: 123
        title:
          type: string
          example: League of Legends Account Diamond EUW
        price:
          type: integer
          example: 4999
        status:
          type: string
          enum:
            - draft
            - pending
            - listed
            - processing
            - sold
            - refunded
            - archived
          example: listed
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        sold_at:
          type: string
          format: date-time
          nullable: true
        description:
          type: string
          example: Hand leveled EUW account.
        current_rank:
          oneOf:
            - type: string
            - type: integer
          example: Gold
        current_division:
          oneOf:
            - type: string
            - type: integer
          example: II
        current_lp:
          type: integer
          example: 120
        flex_rank:
          oneOf:
            - type: string
            - type: integer
          example: Silver
        flex_division:
          oneOf:
            - type: string
            - type: integer
          example: I
        flex_lp:
          type: integer
          example: 75
        level:
          type: integer
          example: 80
        blue_essence:
          type: integer
          example: 45000
        riot_points:
          type: integer
          example: 350
        winrate_percent:
          type: integer
          example: 56
        champion_count:
          type: integer
          example: 120
        skin_count:
          type: integer
          example: 35
        image_ids:
          type: array
          items:
            type: integer
          example:
            - 123
            - 124
        image_urls:
          type: array
          items:
            type: string
          example:
            - https://example.com/account.png
        game_data:
          type: object
          nullable: true
    Error:
      type: object
      properties:
        message:
          type: string
          example: Unauthenticated.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````