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

# Browse available securitization deals

> Paginated deal summaries with metrics and tranche overview.



## OpenAPI

````yaml api-reference/openapi.json GET /v1/api/investor/deals
openapi: 3.0.3
info:
  title: 9Squid Platform API Gateway
  description: >-
    Unified entry point for all Originator and Investor workflows on the 9Squid
    securitization platform.
  version: '1.0'
  x-readme:
    id: 9squid-docs
  contact: {}
servers:
  - url: https://api.9squid.com
    description: Production
  - url: https://sandbox.api.9squid.com
    description: Sandbox
security: []
tags:
  - name: Originator - Loans
    description: Loan tape upload and management
  - name: Originator - Pools
    description: Securitization pool management
  - name: Originator - Analytics
    description: ALM / TCT Risk analytics
  - name: Originator - Selection Criteria
    description: Stratification check runs and exceptions
  - name: Deal Room - Documents
    description: Document upload and management
  - name: Investor - Deals
    description: Browse and evaluate securitization deals
  - name: Investor - Portfolio
    description: Portfolio positions, summary and reports
  - name: Investor - Subscriptions & Allocations
    description: Order and allocation management
  - name: Alerts
    description: Notifications and alert management
  - name: Webhooks
    description: Webhook subscription and delivery management
paths:
  /v1/api/investor/deals:
    get:
      tags:
        - Investor - Deals
      summary: Browse available securitization deals
      description: Paginated deal summaries with metrics and tranche overview.
      operationId: InvestorDealsController_listDeals
      parameters:
        - name: page
          required: false
          in: query
          description: Page number (1-based)
          schema:
            type: number
            example: 1
        - name: limit
          required: false
          in: query
          description: Results per page
          schema:
            example: 20
            type: number
        - name: search
          required: false
          in: query
          description: Search by deal name
          schema:
            type: string
        - name: status
          required: false
          in: query
          description: Filter by deal status (e.g. OPEN, CLOSED)
          schema:
            example: OPEN
            type: string
        - name: sortBy
          required: false
          in: query
          description: Field to sort by
          schema:
            enum:
              - name
              - dealSize
              - status
              - createdAt
              - updatedAt
            type: string
        - name: sortOrder
          required: false
          in: query
          description: Sort direction
          schema:
            enum:
              - asc
              - desc
            type: string
      responses:
        '200':
          description: Paginated deal list
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          example: deal_abc123
                          type: string
                        name:
                          type: string
                          example: Auto ABS Series 2026-1
                        status:
                          example: OPEN
                          type: string
                        dealSize:
                          type: number
                          example: 50000000
                        asset_type:
                          type: object
                          properties:
                            id:
                              type: string
                            name:
                              type: string
                              example: Auto
                        created_at:
                          type: string
                          format: date-time
                  meta:
                    type: object
                    properties:
                      total:
                        type: number
                        example: 42
                      page:
                        type: number
                        example: 1
                      limit:
                        example: 20
                        type: number
                      totalPages:
                        type: number
                        example: 3
        '401':
          description: Unauthorized — invalid or missing API key
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````