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

# Retrieve cleansed listings data by batch ID

> Fetches a paginated slice of listing content previously uploaded and stored under a batch ID.



## OpenAPI

````yaml https://api.seminode.com/v1/docs/public get /me/listings/cleanse
openapi: 3.0.1
info:
  contact: {}
  description: Standard HTTP Basic authentication (username & password).
  title: Seminode API
  version: '1.0'
servers:
  - url: https://api.seminode.com/v1
security: []
tags: []
paths:
  /me/listings/cleanse:
    get:
      tags:
        - Listings
      summary: Retrieve cleansed listings data by batch ID
      description: >-
        Fetches a paginated slice of listing content previously uploaded and
        stored under a batch ID.
      parameters:
        - description: Batch ID used to identify uploaded file
          in: query
          name: batch_id
          required: true
          schema:
            type: string
        - description: Pagination index for slice of results
          in: query
          name: page
          required: true
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
          description: Paginated listings content from cache
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/utils.ErrorResponse'
          description: Invalid batch ID or page parameter
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/utils.ErrorResponse'
          description: No file found for given batch ID
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/utils.ErrorResponse'
          description: Unexpected server error while processing listings
        default:
          description: unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/utils.ErrorResponse'
      security:
        - BearerAuth: []
        - LoginAuth: []
components:
  schemas:
    utils.ErrorResponse:
      properties:
        error:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      description: 'Format: "Bearer &lt;access_token&gt;"'
      in: header
      name: Authorization
      type: apiKey
    LoginAuth:
      scheme: basic
      type: http

````