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

# List Parse Results

> List all parse results for a project with token-based pagination and filtering.

Args:
    project_id: Project ID that the parse results belong to
    filter_params: Filter parameters (ids, created_at, status, engine)
    pagination_params: Pagination parameters (page_size, continuation_token, sort_by, sort_order)

Returns:
    PaginatedItems or list of ParseResultEntityWithoutContent (without content chunks for performance)

Raises:
    HTTPException: If project not found



## OpenAPI

````yaml https://dex.sgp.scale.com/openapi.json get /v1/projects/{project_id}/parse/results
openapi: 3.1.0
info:
  title: Document Understanding API
  description: API for uploading and processing documents
  version: 0.4.5
servers: []
security:
  - ApiKey: []
    AccountId: []
tags:
  - name: Projects
    description: Operations related to project creation and management
  - name: Files
    description: Operations related to file upload and access
  - name: Parse
    description: Operations related to starting parse jobs and accessing their results
  - name: Vector Stores
    description: Operations related to vector store creation and management
  - name: Extract
    description: Operations related to starting extract jobs and accessing their results
  - name: Research
    description: Dex Research agent kickoff and results.
  - name: Jobs
    description: Operations related to monitoring jobs and their status
paths:
  /v1/projects/{project_id}/parse/results:
    get:
      tags:
        - Parse
      summary: List Parse Results
      description: >-
        List all parse results for a project with token-based pagination and
        filtering.


        Args:
            project_id: Project ID that the parse results belong to
            filter_params: Filter parameters (ids, created_at, status, engine)
            pagination_params: Pagination parameters (page_size, continuation_token, sort_by, sort_order)

        Returns:
            PaginatedItems or list of ParseResultEntityWithoutContent (without content chunks for performance)

        Raises:
            HTTPException: If project not found
      operationId: list_parse_results_v1_projects__project_id__parse_results_get
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            title: Project Id
        - name: ids
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            description: Filter by parse result IDs
            title: Ids
          description: Filter by parse result IDs
        - name: created_at_start
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter by creation time (start)
            title: Created At Start
          description: Filter by creation time (start)
        - name: created_at_end
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter by creation time (end)
            title: Created At End
          description: Filter by creation time (end)
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by status (success/error)
            title: Status
          description: Filter by status (success/error)
        - name: engine
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by engine name
            title: Engine
          description: Filter by engine name
        - name: page_size
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                maximum: 100
                minimum: 1
              - type: 'null'
            description: Number of items per page
            title: Page Size
          description: Number of items per page
        - name: sort_by
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Field to sort by
            title: Sort By
          description: Field to sort by
        - name: sort_order
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/SortOrder'
              - type: 'null'
            description: Sort order (asc or desc)
            title: Sort Order
          description: Sort order (asc or desc)
        - name: continuation_token
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Pagination token
            title: Continuation Token
          description: Pagination token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/MaybePaginatedListResponse_ParseResultEntityWithoutContent_
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SortOrder:
      type: string
      enum:
        - asc
        - desc
      title: SortOrder
      description: >-
        Enum for project sort fields.

        Note that only non-nullable fields can be sorted by (for

        details, see:
        https://github.com/djrobstep/sqlakeyset?tab=readme-ov-file#limitations
        ).
    MaybePaginatedListResponse_ParseResultEntityWithoutContent_:
      anyOf:
        - $ref: '#/components/schemas/PaginatedItems_ParseResultEntityWithoutContent_'
        - items:
            $ref: '#/components/schemas/ParseResultEntityWithoutContent'
          type: array
      title: MaybePaginatedListResponse[ParseResultEntityWithoutContent]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PaginatedItems_ParseResultEntityWithoutContent_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/ParseResultEntityWithoutContent'
          type: array
          title: Items
        total_count:
          type: integer
          title: Total Count
        next_token:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Token
        prev_token:
          anyOf:
            - type: string
            - type: 'null'
          title: Prev Token
      type: object
      required:
        - items
        - total_count
      title: PaginatedItems[ParseResultEntityWithoutContent]
    ParseResultEntityWithoutContent:
      properties:
        object:
          type: string
          const: parse_result
          title: Object
          default: parse_result
        source_document_id:
          type: string
          title: Source Document Id
          description: Source document ID that was parsed
        engine:
          type: string
          title: Engine
          description: Engine used for parsing
        parse_metadata:
          $ref: '#/components/schemas/ParseResultMetadata'
          description: Parse result metadata
        vector_store_metadata:
          anyOf:
            - additionalProperties:
                anyOf:
                  - type: string
                  - type: integer
                  - type: number
                  - type: boolean
              type: object
            - type: 'null'
          title: Vector Store Metadata
          description: >-
            Metadata to populate into the vector store to filter on when
            searching
        parameters:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Parameters
          description: Parameters used during parsing
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
          description: Error message if parsing had issues
        processing_time_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Processing Time Ms
          description: Processing time in milliseconds
        id:
          type: string
          title: Id
          description: ID of the entity
        project_id:
          type: string
          title: Project Id
          description: ID of the project
        created_at:
          type: string
          format: date-time
          title: Created At
          description: When the parse result was created
      type: object
      required:
        - source_document_id
        - engine
        - parse_metadata
        - id
        - project_id
        - created_at
      title: ParseResultEntityWithoutContent
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    ParseResultMetadata:
      properties:
        source_id:
          type: string
          title: Source Id
          description: Source file ID
        filename:
          type: string
          title: Filename
          description: Original filename
        pages_processed:
          type: integer
          title: Pages Processed
          description: Number of pages actually processed
      type: object
      required:
        - source_id
        - filename
        - pages_processed
      title: ParseResultMetadata
      description: Metadata for a parse result.
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication
    AccountId:
      type: apiKey
      in: header
      name: x-selected-account-id
      description: Selected Account ID

````