curl --request GET \
--url https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"total": 150,
"offset": 0,
"limit": 25,
"items": [
{
"id": "liq_0b3f...",
"integrationId": "morpho-blue-borrow",
"network": "eip155:1",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"marketId": "morpho-blue-borrow-ethereum-cbbtc-usdc-0x0c6b...",
"type": "partial",
"realizedBadDebt": false,
"occurredAt": "2026-05-21T14:08:12.000Z",
"blockNumber": 22118447,
"transactionHash": "0x8a3f...",
"transactionLink": "https://etherscan.io/tx/0x8a3f...",
"liquidator": "0x...",
"repaidDebt": {
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"tokenSymbol": "USDC",
"amount": "1500.000000",
"amountRaw": "1500000000",
"amountUsd": "1500.00",
"shares": "1487123456789012345678"
},
"seizedCollateral": {
"tokenAddress": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf",
"tokenSymbol": "cbBTC",
"amount": "0.02356500",
"amountRaw": "2356500",
"amountUsd": "1567.34"
},
"badDebt": {
"amountRaw": "0",
"amount": "0",
"amountUsd": "0.00",
"shares": "0"
},
"lif": "1.0449"
}
]
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "yield-xyz-borrow returned a response for GET /v1/positions that does not match the expected schema",
"id": "INTEGRATION_RESPONSE_SCHEMA_DRIFT",
"details": {
"integration": "yield-xyz-borrow",
"endpoint": "GET /v1/positions",
"issues": [
{
"path": "supplyBalances.0.balanceUsd",
"message": "Expected string, received number",
"code": "invalid_type"
}
]
}
}{
"error": "<string>"
}Get liquidation history
Retrieve a paginated history of Morpho Blue liquidation events for a borrower address, read from the indexed store. This is the only place a fully-liquidated (closed) position can be retrieved, since it no longer appears in GET /v1/positions. Ordered by most recent first.
This is a proxy to the Yield.xyz Borrow GET /v1/positions/liquidations endpoint. Portal validates the upstream response against the schema documented here before returning it under data, and translates network values to CAIP-2. If Yield.xyz changes the response shape, Portal returns a 500 with id: INTEGRATION_RESPONSE_SCHEMA_DRIFT instead of a partial response. Upstream reference: docs.yield.xyz.
curl --request GET \
--url https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/positions/liquidations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"total": 150,
"offset": 0,
"limit": 25,
"items": [
{
"id": "liq_0b3f...",
"integrationId": "morpho-blue-borrow",
"network": "eip155:1",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"marketId": "morpho-blue-borrow-ethereum-cbbtc-usdc-0x0c6b...",
"type": "partial",
"realizedBadDebt": false,
"occurredAt": "2026-05-21T14:08:12.000Z",
"blockNumber": 22118447,
"transactionHash": "0x8a3f...",
"transactionLink": "https://etherscan.io/tx/0x8a3f...",
"liquidator": "0x...",
"repaidDebt": {
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"tokenSymbol": "USDC",
"amount": "1500.000000",
"amountRaw": "1500000000",
"amountUsd": "1500.00",
"shares": "1487123456789012345678"
},
"seizedCollateral": {
"tokenAddress": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf",
"tokenSymbol": "cbBTC",
"amount": "0.02356500",
"amountRaw": "2356500",
"amountUsd": "1567.34"
},
"badDebt": {
"amountRaw": "0",
"amount": "0",
"amountUsd": "0.00",
"shares": "0"
},
"lif": "1.0449"
}
]
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "yield-xyz-borrow returned a response for GET /v1/positions that does not match the expected schema",
"id": "INTEGRATION_RESPONSE_SCHEMA_DRIFT",
"details": {
"integration": "yield-xyz-borrow",
"endpoint": "GET /v1/positions",
"issues": [
{
"path": "supplyBalances.0.balanceUsd",
"message": "Expected string, received number",
"code": "invalid_type"
}
]
}
}{
"error": "<string>"
}Authorizations
Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.
Query Parameters
Offset for pagination
x >= 00
Maximum number of items to return
1 <= x <= 10025
Integration identifier (must be a Morpho Blue borrow integration)
"morpho-blue-borrow"
Network identifier in CAIP-2 format (e.g. eip155:1 for Ethereum, eip155:8453 for Base). Portal translates this to the Yield.xyz network name; unsupported chains are rejected with a 400.
User wallet address (the liquidated borrower)
"0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28"
Optional market filter. Accepts the integration market id or the on-chain bytes32 market hash.
"morpho-blue-borrow-ethereum-cbbtc-usdc-0x0c6b..."
Response
Paginated list of liquidation events
Show child attributes
Show child attributes
Was this page helpful?