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

# Imported-transaction execution portfolio summary

> Portfolio-level vs-market opportunity across the organization's imported, classified transactions — a confidence-gated USD range, suppressed when the interval straddles zero. Powers the import benchmark portfolio card.



## OpenAPI

````yaml https://sandbox-api.borderless.xyz/v1/api-json get /v1/transactions/import-benchmark-summary
openapi: 3.0.0
info:
  title: Borderless API
  description: The Borderless API documentation.
  version: '1.0'
  contact: {}
servers:
  - url: https://sandbox-api.borderless.xyz
security: []
tags: []
paths:
  /v1/transactions/import-benchmark-summary:
    get:
      tags:
        - Transactions
      summary: Imported-transaction execution portfolio summary
      description: >-
        Portfolio-level vs-market opportunity across the organization's
        imported, classified transactions — a confidence-gated USD range,
        suppressed when the interval straddles zero. Powers the import benchmark
        portfolio card.
      operationId: TransactionsController_getImportBenchmarkSummary
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImportBenchmarkPortfolioEntity'
      security:
        - bearer: []
components:
  schemas:
    ImportBenchmarkPortfolioEntity:
      type: object
      properties:
        hasSignal:
          type: boolean
        sampleSize:
          type: number
        totalVolumeUsd:
          type: string
        pointUsd:
          type: string
          nullable: true
        lowUsd:
          type: string
          nullable: true
        highUsd:
          type: string
          nullable: true
      required:
        - hasSignal
        - sampleSize
        - totalVolumeUsd
        - pointUsd
        - lowUsd
        - highUsd
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````