UnifiedOrdersResponse
A user's own orders across order-book / auction lenders.
orders object[]
Provider order id — the cancel target (Midnight offer root / Term listingId / auction submission id).
TERM_FINANCE_0xABC…1maker-offer (Midnight signed limit offer), listing (Term secondary repo-token listing), auction-offer/auction-bid (Term primary sealed-bid submission).
Possible values: [maker-offer, listing, auction-offer, auction-bid]
Possible values: [lend, borrow]
Order size, loan-token base units.
Size decimal-scaled to loan-token assets, or null.
Annualized rate in percent, or null while sealed.
open = cancellable now (maker offer / listing); sealed/revealed = auction lifecycle; filled = assigned at clearing; closed = complete or cancelled.
Possible values: [open, sealed, revealed, filled, closed]
Amount assigned at clearing (auctions), base units.
Market/repo maturity, unix seconds.
Maker-offer expiry, unix seconds (Midnight).
Auction reveal window opens, unix seconds (Term).
Auction closes / clears, unix seconds (Term).
cancel objectnullable
Self-describing cancel/unlock action — omitted when not cancellable. Fetch path+query to build the cancel transaction.
Possible values: [GET, POST]
/v1/actions/term/unlock-offersquery object
{
"orders": [
{
"id": "string",
"lender": "TERM_FINANCE_0xABC…",
"chainId": "1",
"kind": "maker-offer",
"side": "lend",
"amount": "string",
"assets": 0,
"aprPct": 0,
"status": "open",
"filledAmount": "string",
"maturity": 0,
"expiry": 0,
"revealTime": 0,
"auctionEndTime": 0,
"cancel": {
"method": "GET",
"path": "/v1/actions/term/unlock-offers",
"query": {}
}
}
]
}