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

# Get deal allocations

> Returns final allocations per tranche with allocated_amount, pct_fill, settlement_date, and confirmation_id.



## OpenAPI

````yaml api-reference/openapi.json GET /v1/api/investor/deals/{dealId}/allocations
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/{dealId}/allocations:
    get:
      tags:
        - Investor - Subscriptions & Allocations
      summary: Get deal allocations
      description: >-
        Returns final allocations per tranche with allocated_amount, pct_fill,
        settlement_date, and confirmation_id.
      operationId: SubscriptionsController_getAllocations
      parameters:
        - name: dealId
          required: true
          in: path
          description: Securitization Deal ID
          schema:
            example: deal_abc123
            type: string
        - name: includeTranche
          required: false
          in: query
          description: Include full tranche details in each allocation
          schema:
            type: boolean
            example: true
      responses:
        '200':
          description: Final allocations per tranche
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        tranche_id:
                          type: string
                          example: tranche_a_1
                        allocated_amount:
                          type: number
                          example: 500000
                        pct_fill:
                          type: number
                          description: Percentage of requested amount filled (0–1)
                          example: 0.5
                        settlement_date:
                          type: string
                          format: date
                          example: '2026-05-15'
                        confirmation_id:
                          type: string
                          example: conf_xyz789
                        tranche:
                          type: object
                          description: Present when includeTranche=true
        '401':
          description: Unauthorized — invalid or missing API key
        '404':
          description: Deal not found
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````