curl --request POST \
--url https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"integrationId": "aave-borrow",
"action": "supply",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"args": {
"marketId": "morpho-blue-borrow-base-cbbtc-usdc-86",
"amount": "1.5",
"amountRaw": "1500000",
"repayAll": true,
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"collateralTokenAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"collateralAmount": "0.5",
"collateralAmountRaw": "50000000",
"borrowAmount": "100",
"targetLtv": "0.1"
}
}
'import requests
url = "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions"
payload = {
"integrationId": "aave-borrow",
"action": "supply",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"args": {
"marketId": "morpho-blue-borrow-base-cbbtc-usdc-86",
"amount": "1.5",
"amountRaw": "1500000",
"repayAll": True,
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"collateralTokenAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"collateralAmount": "0.5",
"collateralAmountRaw": "50000000",
"borrowAmount": "100",
"targetLtv": "0.1"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
integrationId: 'aave-borrow',
action: 'supply',
address: '0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28',
args: {
marketId: 'morpho-blue-borrow-base-cbbtc-usdc-86',
amount: '1.5',
amountRaw: '1500000',
repayAll: true,
tokenAddress: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
collateralTokenAddress: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
collateralAmount: '0.5',
collateralAmountRaw: '50000000',
borrowAmount: '100',
targetLtv: '0.1'
}
})
};
fetch('https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions', 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/actions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'integrationId' => 'aave-borrow',
'action' => 'supply',
'address' => '0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28',
'args' => [
'marketId' => 'morpho-blue-borrow-base-cbbtc-usdc-86',
'amount' => '1.5',
'amountRaw' => '1500000',
'repayAll' => true,
'tokenAddress' => '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
'collateralTokenAddress' => '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
'collateralAmount' => '0.5',
'collateralAmountRaw' => '50000000',
'borrowAmount' => '100',
'targetLtv' => '0.1'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions"
payload := strings.NewReader("{\n \"integrationId\": \"aave-borrow\",\n \"action\": \"supply\",\n \"address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28\",\n \"args\": {\n \"marketId\": \"morpho-blue-borrow-base-cbbtc-usdc-86\",\n \"amount\": \"1.5\",\n \"amountRaw\": \"1500000\",\n \"repayAll\": true,\n \"tokenAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n \"collateralTokenAddress\": \"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2\",\n \"collateralAmount\": \"0.5\",\n \"collateralAmountRaw\": \"50000000\",\n \"borrowAmount\": \"100\",\n \"targetLtv\": \"0.1\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"integrationId\": \"aave-borrow\",\n \"action\": \"supply\",\n \"address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28\",\n \"args\": {\n \"marketId\": \"morpho-blue-borrow-base-cbbtc-usdc-86\",\n \"amount\": \"1.5\",\n \"amountRaw\": \"1500000\",\n \"repayAll\": true,\n \"tokenAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n \"collateralTokenAddress\": \"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2\",\n \"collateralAmount\": \"0.5\",\n \"collateralAmountRaw\": \"50000000\",\n \"borrowAmount\": \"100\",\n \"targetLtv\": \"0.1\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"integrationId\": \"aave-borrow\",\n \"action\": \"supply\",\n \"address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28\",\n \"args\": {\n \"marketId\": \"morpho-blue-borrow-base-cbbtc-usdc-86\",\n \"amount\": \"1.5\",\n \"amountRaw\": \"1500000\",\n \"repayAll\": true,\n \"tokenAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n \"collateralTokenAddress\": \"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2\",\n \"collateralAmount\": \"0.5\",\n \"collateralAmountRaw\": \"50000000\",\n \"borrowAmount\": \"100\",\n \"targetLtv\": \"0.1\"\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"integrationId": "aave-borrow",
"action": "supply",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"status": "CREATED",
"transactions": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"network": "eip155:1",
"type": "SUPPLY",
"status": "CREATED",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"signingFormat": "EVM_TRANSACTION",
"signablePayload": "{\"from\":\"0x6877BB79...\",\"gasLimit\":\"350000\",\"to\":\"0xA238Dd80...\",\"data\":\"0x617ba037...\"}"
}
],
"hasNextStep": false,
"currentStep": 1,
"totalSteps": 1,
"createdAt": "2023-11-07T05:31:56Z",
"rawArguments": {
"marketId": "morpho-blue-borrow-base-cbbtc-usdc-86",
"amount": "1.5",
"amountRaw": "1500000",
"repayAll": true,
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"collateralTokenAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"collateralAmount": "0.5",
"collateralAmountRaw": "50000000",
"borrowAmount": "100",
"targetLtv": "0.1"
},
"metadata": {
"currentHealthFactor": "1.85",
"predictedHealthFactor": "1.42",
"currentLtv": "0.55",
"predictedLtv": "0.72",
"liquidationThreshold": "0.85",
"predictedTotalSupplyUsd": "10000.00",
"predictedTotalDebtUsd": "7200.00",
"originationFeeBps": 100,
"originationFeeAmount": "1.00",
"effectivePrincipalAmount": "101.00",
"feeAmount": "0.0005",
"feeBps": 50,
"effectiveCollateralAmount": "0.0125"
}
}
}{
"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>"
}Execute a borrow action
Generate unsigned transactions for a lending/borrowing action. Returns transaction(s) to sign. Submit each signed transaction via POST /transactions/:id/submit. For async multi-step flows (e.g., cross-chain bridges), hasNextStep will be true — call POST /actions/:id/step after confirmation to get the next transaction(s).
This is a proxy to the Yield.xyz Borrow POST /v1/actions 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 POST \
--url https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"integrationId": "aave-borrow",
"action": "supply",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"args": {
"marketId": "morpho-blue-borrow-base-cbbtc-usdc-86",
"amount": "1.5",
"amountRaw": "1500000",
"repayAll": true,
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"collateralTokenAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"collateralAmount": "0.5",
"collateralAmountRaw": "50000000",
"borrowAmount": "100",
"targetLtv": "0.1"
}
}
'import requests
url = "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions"
payload = {
"integrationId": "aave-borrow",
"action": "supply",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"args": {
"marketId": "morpho-blue-borrow-base-cbbtc-usdc-86",
"amount": "1.5",
"amountRaw": "1500000",
"repayAll": True,
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"collateralTokenAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"collateralAmount": "0.5",
"collateralAmountRaw": "50000000",
"borrowAmount": "100",
"targetLtv": "0.1"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
integrationId: 'aave-borrow',
action: 'supply',
address: '0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28',
args: {
marketId: 'morpho-blue-borrow-base-cbbtc-usdc-86',
amount: '1.5',
amountRaw: '1500000',
repayAll: true,
tokenAddress: '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
collateralTokenAddress: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
collateralAmount: '0.5',
collateralAmountRaw: '50000000',
borrowAmount: '100',
targetLtv: '0.1'
}
})
};
fetch('https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions', 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/actions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'integrationId' => 'aave-borrow',
'action' => 'supply',
'address' => '0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28',
'args' => [
'marketId' => 'morpho-blue-borrow-base-cbbtc-usdc-86',
'amount' => '1.5',
'amountRaw' => '1500000',
'repayAll' => true,
'tokenAddress' => '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
'collateralTokenAddress' => '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
'collateralAmount' => '0.5',
'collateralAmountRaw' => '50000000',
'borrowAmount' => '100',
'targetLtv' => '0.1'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions"
payload := strings.NewReader("{\n \"integrationId\": \"aave-borrow\",\n \"action\": \"supply\",\n \"address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28\",\n \"args\": {\n \"marketId\": \"morpho-blue-borrow-base-cbbtc-usdc-86\",\n \"amount\": \"1.5\",\n \"amountRaw\": \"1500000\",\n \"repayAll\": true,\n \"tokenAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n \"collateralTokenAddress\": \"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2\",\n \"collateralAmount\": \"0.5\",\n \"collateralAmountRaw\": \"50000000\",\n \"borrowAmount\": \"100\",\n \"targetLtv\": \"0.1\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"integrationId\": \"aave-borrow\",\n \"action\": \"supply\",\n \"address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28\",\n \"args\": {\n \"marketId\": \"morpho-blue-borrow-base-cbbtc-usdc-86\",\n \"amount\": \"1.5\",\n \"amountRaw\": \"1500000\",\n \"repayAll\": true,\n \"tokenAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n \"collateralTokenAddress\": \"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2\",\n \"collateralAmount\": \"0.5\",\n \"collateralAmountRaw\": \"50000000\",\n \"borrowAmount\": \"100\",\n \"targetLtv\": \"0.1\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.portalhq.io/api/v3/clients/me/integrations/yield-xyz-borrow/actions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"integrationId\": \"aave-borrow\",\n \"action\": \"supply\",\n \"address\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28\",\n \"args\": {\n \"marketId\": \"morpho-blue-borrow-base-cbbtc-usdc-86\",\n \"amount\": \"1.5\",\n \"amountRaw\": \"1500000\",\n \"repayAll\": true,\n \"tokenAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n \"collateralTokenAddress\": \"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2\",\n \"collateralAmount\": \"0.5\",\n \"collateralAmountRaw\": \"50000000\",\n \"borrowAmount\": \"100\",\n \"targetLtv\": \"0.1\"\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"integrationId": "aave-borrow",
"action": "supply",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"status": "CREATED",
"transactions": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"network": "eip155:1",
"type": "SUPPLY",
"status": "CREATED",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28",
"signingFormat": "EVM_TRANSACTION",
"signablePayload": "{\"from\":\"0x6877BB79...\",\"gasLimit\":\"350000\",\"to\":\"0xA238Dd80...\",\"data\":\"0x617ba037...\"}"
}
],
"hasNextStep": false,
"currentStep": 1,
"totalSteps": 1,
"createdAt": "2023-11-07T05:31:56Z",
"rawArguments": {
"marketId": "morpho-blue-borrow-base-cbbtc-usdc-86",
"amount": "1.5",
"amountRaw": "1500000",
"repayAll": true,
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"collateralTokenAddress": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"collateralAmount": "0.5",
"collateralAmountRaw": "50000000",
"borrowAmount": "100",
"targetLtv": "0.1"
},
"metadata": {
"currentHealthFactor": "1.85",
"predictedHealthFactor": "1.42",
"currentLtv": "0.55",
"predictedLtv": "0.72",
"liquidationThreshold": "0.85",
"predictedTotalSupplyUsd": "10000.00",
"predictedTotalDebtUsd": "7200.00",
"originationFeeBps": 100,
"originationFeeAmount": "1.00",
"effectivePrincipalAmount": "101.00",
"feeAmount": "0.0005",
"feeBps": 50,
"effectiveCollateralAmount": "0.0125"
}
}
}{
"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.
Body
Integration identifier
"aave-borrow"
Action to execute
supply, borrow, repay, withdraw, enableCollateral, disableCollateral, supplyAndBorrow "supply"
User wallet address
"0x742d35Cc6634C0532925a3b844Bc9e7595f8fB28"
Action arguments. marketId is always required; the other fields depend on the action (see the integration's actions[].schema).
Show child attributes
Show child attributes
Response
Action created with unsigned transactions ready for signing
Show child attributes
Show child attributes
Was this page helpful?