curl --request GET \
--url https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/markets/{marketId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/markets/{marketId}"
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/markets/{marketId}', 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/markets/{marketId}",
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/markets/{marketId}"
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/markets/{marketId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/markets/{marketId}")
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": {
"id": "aave-borrow-base-0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"integrationId": "aave-borrow",
"network": "eip155:1",
"type": "pool",
"poolAddress": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
"loanToken": {
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6,
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"logoURI": "<string>"
},
"collateralTokens": [
{
"token": {
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6,
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"logoURI": "<string>"
},
"priceUsd": "2800.00",
"maxLtv": "0.80",
"liquidationThreshold": "0.825",
"liquidationPenalty": "0.05",
"supplyRate": "0.02"
}
],
"borrowRate": "0.0567",
"totalSupply": "1234567.89",
"totalSupplyRaw": "1234567890000000",
"totalBorrow": "987654.321",
"totalBorrowRaw": "987654321000000",
"availableLiquidity": "246913.569",
"availableLiquidityRaw": "246913569000000",
"utilizationRate": "0.80",
"loanTokenPriceUsd": "1.00",
"isBorrowEnabled": true,
"supplyCollateralFeeBps": "50",
"feeWrapperAddress": "0x29ac0c53Eb4b19295875D3895Fb1514ffC8e1616",
"originationFeeBps": "100",
"originationFeeWrapperAddress": "0x3C778911B9e36eA8CE53dBF211a203e3300939b6",
"blueBundleOriginationFeeBps": "50",
"minLoan": "0.01"
}
}{
"error": "<string>"
}{
"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 market by ID
Retrieve details for a specific lending market. Useful for deep linking into a specific market (e.g., cbBTC/USDT on Morpho Blue).
This is a proxy to the Yield.xyz Borrow GET /v1/markets/{marketId} 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/markets/{marketId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/markets/{marketId}"
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/markets/{marketId}', 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/markets/{marketId}",
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/markets/{marketId}"
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/markets/{marketId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/markets/{marketId}")
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": {
"id": "aave-borrow-base-0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"integrationId": "aave-borrow",
"network": "eip155:1",
"type": "pool",
"poolAddress": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
"loanToken": {
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6,
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"logoURI": "<string>"
},
"collateralTokens": [
{
"token": {
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6,
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"logoURI": "<string>"
},
"priceUsd": "2800.00",
"maxLtv": "0.80",
"liquidationThreshold": "0.825",
"liquidationPenalty": "0.05",
"supplyRate": "0.02"
}
],
"borrowRate": "0.0567",
"totalSupply": "1234567.89",
"totalSupplyRaw": "1234567890000000",
"totalBorrow": "987654.321",
"totalBorrowRaw": "987654321000000",
"availableLiquidity": "246913.569",
"availableLiquidityRaw": "246913569000000",
"utilizationRate": "0.80",
"loanTokenPriceUsd": "1.00",
"isBorrowEnabled": true,
"supplyCollateralFeeBps": "50",
"feeWrapperAddress": "0x29ac0c53Eb4b19295875D3895Fb1514ffC8e1616",
"originationFeeBps": "100",
"originationFeeWrapperAddress": "0x3C778911B9e36eA8CE53dBF211a203e3300939b6",
"blueBundleOriginationFeeBps": "50",
"minLoan": "0.01"
}
}{
"error": "<string>"
}{
"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.
Path Parameters
Market id exactly as returned by GET /markets (e.g. aave-borrow-base-0x833589fcd6edb6e08f4c7c32d4f71b54bda02913). Treat it as opaque.
"aave-borrow-base-0x833589fcd6edb6e08f4c7c32d4f71b54bda02913"
Response
Market details
Show child attributes
Show child attributes
Was this page helpful?