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

# List results

> Lists all results for an order.

### Notes

Results are ordered by creation date.



## OpenAPI

````yaml https://console.lomaplatform.com/api/vendor/v1/openapi get /api/vendor/v1/orders/{orderId}/results
openapi: 3.1.0
info:
  title: LOMA Vendor API
  version: 1.0.0
  description: >-
    API for managing vendor data on LOMA.

    ### Authentication


    Your API Key should be passed in the `API-Key` header formatted as
    `KEY_ID:KEY_SECRET`.


    Vendors can create API keys in the LOMA console.
  contact:
    email: support@lomaplatform.com
servers:
  - url: https://console.lomaplatform.com
security: []
paths:
  /api/vendor/v1/orders/{orderId}/results:
    get:
      tags:
        - Order Results
      summary: List results
      description: |-
        Lists all results for an order.

        ### Notes

        Results are ordered by creation date.
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    title:
                      type: string
                    order_id:
                      type: string
                    file_size:
                      type: string
                    file_type:
                      type:
                        - string
                        - 'null'
                    file_name:
                      type: string
                    created_at:
                      type: string
                    updated_at:
                      type: string
                  required:
                    - id
                    - title
                    - order_id
                    - file_size
                    - file_type
                    - file_name
                    - created_at
                    - updated_at
                example:
                  - id: res_abc123
                    title: connections.csv
                    file_size: '398370'
                    file_type: text/csv
                    file_name: export.csv
                    order_id: i_abc123
                    created_at: '2024-08-23 19:25:41.605688+00'
                    updated_at: '2024-08-23 19:25:41.605688+00'
      security:
        - apiKeyHeader: []
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: API-Key
      description: API Key for the vendor

````