Abs Loan Level

live Reference

ABS-EE (Reg AB II) trust-level rollups — auto loan / auto lease

3 tools
0ms auth
free tier 50 calls/day

Tools

abs_trusts

List US auto loan / auto lease securitization trusts we track (from SEC EDGAR Reg AB II ABS-EE filings), optionally filtered by sponsor (captive-finance company / depositor, e.g. "Ally", "Toyota") or

No parameters required.

Try it
abs_trust_performance

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-5

No parameters required.

Try it
abs_sector_delinquency

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 m

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/abs-loan-level/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/abs-loan-level/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"abs_trusts","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("abs_trusts", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("abs-ee (reg ab ii) trust-level rollups — auto loan / auto lease");