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

# Get a result

> Retrieves a single result for an order.



## OpenAPI

````yaml https://console.lomaplatform.com/api/vendor/v1/openapi get /api/vendor/v1/orders/{orderId}/results/{resultId}
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/{resultId}:
    get:
      tags:
        - Order Results
      summary: Get a result
      description: Retrieves a single result for an order.
      responses:
        '200':
          description: 200 OK
          content:
            application/json:
              schema:
                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'
        '404':
          description: Result not found
      security:
        - apiKeyHeader: []
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: API-Key
      description: API Key for the vendor

````