abs_trust_performance
Pack: abs-loan-level · Endpoint: https://gateway.pipeworx.io/abs-loan-level/mcp
Delinquency-bucket performance history for ONE named securitization trust over its most recent N reporting months — loan count, balance, weighted-average APR and FICO per bucket (current / 1-29 / 30-59 / 60-89 / 90+ days past due / repossessed / charged-off). Use for “how is Ally Auto Receivables Trust 2024-2 performing?” or to track one deal’s delinquency trend month over month. Get the exact trust name from abs_trusts first.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
trust | string | yes | Exact trust display name, e.g. “Ally Auto Receivables Trust 2024-2”. Case-sensitive exact match — look it up via abs_trusts if unsure. |
months | number | no | Number of most-recent reporting months to return. Default 12, max 36. |
Example call
Arguments
{
"trust": "CarMax Auto Owner Trust 2024-4 (CIK 0002037519)",
"months": 6
}
curl
curl -X POST https://gateway.pipeworx.io/abs-loan-level/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"abs_trust_performance","arguments":{"trust":"CarMax Auto Owner Trust 2024-4 (CIK 0002037519)","months":6}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('abs_trust_performance', {
"trust": "CarMax Auto Owner Trust 2024-4 (CIK 0002037519)",
"months": 6
});
More examples
{
"trust": "BMW Vehicle Lease Trust 2025-1 (CIK 0002069400)"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"abs-loan-level": {
"url": "https://gateway.pipeworx.io/abs-loan-level/mcp"
}
}
}
See Getting Started for client-specific install steps.