abs_sector_delinquency
Pack: abs-loan-level · Endpoint: https://gateway.pipeworx.io/abs-loan-level/mcp
Sector-wide auto ABS delinquency by month, aggregated across every tracked trust in one asset class — e.g. “60+ day delinquency across subprime auto trusts this month”. Returns one row per reporting month with total balance/loan count, the full delinquency-bucket breakdown, sector weighted-average APR/FICO, and a 60+ days-past-due rate. Optionally narrow to trusts from one sponsor/originator (captive-finance company, e.g. “Ally”, “Toyota”, “Santander”) — most auto ABS trusts are single-originator so this is a trust-level filter, not a per-loan lender lookup; there is no loan-level “which trusts hold loans from lender X” query (that needs data this pack deliberately does not keep — see the pack header).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
asset_class | string | yes | Which ABS sector to aggregate. |
months | number | no | Number of most-recent reporting months to return. Default 12, max 36. |
originator | string | no | Optional case-insensitive substring filter on the trust’s sponsor/depositor name (e.g. “Ally”, “GM Financial”). |
Example call
Arguments
{
"asset_class": "auto_loan",
"months": 12
}
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_sector_delinquency","arguments":{"asset_class":"auto_loan","months":12}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('abs_sector_delinquency', {
"asset_class": "auto_loan",
"months": 12
});
More examples
{
"asset_class": "auto_lease",
"months": 6
}
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.