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

# Pool Analytics

> Browse securitization pools, fetch aggregate statistics, and pull full pool reports.

<Steps>
  <Step title="List Your Pools">
    Returns all securitization pools associated with your organization.

    <CodeGroup>
      ```bash cURL theme={null}
      curl https://api.9squid.com/v1/api/originator/pools \
        -H "Authorization: Bearer <your_token>"
      ```

      ```json Response theme={null}
      {
        "success": true,
        "data": [
          {
            "pool_id": "clxpool001",
            "deal_id": "clx1a2b3c4d5e6f7g8h9",
            "asset_type": "Auto",
            "loan_count": 1240,
            "total_balance": 48500000,
            "created_at": "2026-04-01T00:00:00Z"
          }
        ]
      }
      ```
    </CodeGroup>
  </Step>

  <Step title="Pool Summary Statistics">
    The summary endpoint returns key aggregate metrics in a single call.

    <CodeGroup>
      ```bash cURL theme={null}
      curl https://api.9squid.com/v1/api/originator/pools/clxpool001/summary \
        -H "Authorization: Bearer <your_token>"
      ```

      ```json Response theme={null}
      {
        "success": true,
        "data": {
          "total_balance": 48500000,
          "loan_count": 1240,
          "wa_coupon": 6.85,
          "wa_maturity": 54.2,
          "wa_ltv": 72.4,
          "wa_fico": 718,
          "wa_dti": 38.1,
          "wa_seasoning": 8.3,
          "balance_stats": { "min": 4200, "max": 95000, "avg": 39112 },
          "delinquency_breakdown": {
            "current": 94.2,
            "30_days": 3.8,
            "60_days": 1.4,
            "90_plus_days": 0.6
          },
          "geographic_top_5": [
            { "state": "CA", "pct": 22.1 },
            { "state": "TX", "pct": 14.3 },
            { "state": "FL", "pct": 11.8 }
          ],
          "vintage_distribution": {
            "2023": 18.4,
            "2024": 51.2,
            "2025": 30.4
          }
        }
      }
      ```
    </CodeGroup>
  </Step>

  <Step title="Full Pool Report">
    <CodeGroup>
      ```bash cURL theme={null}
      curl https://api.9squid.com/v1/api/originator/pools/clxpool001/report \
        -H "Authorization: Bearer <your_token>"
      ```

      ```json Response theme={null}
      {
        "success": true,
        "data": { }
      }
      ```
    </CodeGroup>
  </Step>

  <Step title="Find Pool by Deal ID">
    If you know the deal but not the pool ID, look it up directly.

    | Metric         | Description                                     |
    | -------------- | ----------------------------------------------- |
    | `wa_coupon`    | Weighted average interest rate across all loans |
    | `wa_maturity`  | Weighted average remaining term in months       |
    | `wa_ltv`       | Weighted average loan-to-value ratio            |
    | `wa_fico`      | Weighted average borrower credit score          |
    | `wa_dti`       | Weighted average debt-to-income ratio           |
    | `wa_seasoning` | Weighted average months since origination       |

    <CodeGroup>
      ```bash cURL theme={null}
      curl https://api.9squid.com/v1/api/originator/pools/deal/clx1a2b3c4d5e6f7g8h9 \
        -H "Authorization: Bearer <your_token>"
      ```

      ```json Response theme={null}
      {
        "success": true,
        "data": {
          "pool_id": "clxpool001",
          "deal_id": "clx1a2b3c4d5e6f7g8h9",
          "total_balance": 48500000,
          "loan_count": 1240
        }
      }
      ```
    </CodeGroup>
  </Step>
</Steps>
