Skip to main content
POST
/
clients
/
me
/
integrations
/
lifi
/
route-step-details
Get details for a route step
curl --request POST \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/lifi/route-step-details \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "type": "<string>",
  "tool": "<string>",
  "toolDetails": {
    "key": "<string>",
    "name": "<string>",
    "logoURI": "<string>"
  },
  "action": {
    "fromChainId": "<string>",
    "toChainId": "<string>",
    "fromAmount": "<string>",
    "fromToken": {
      "address": "<string>",
      "symbol": "<string>",
      "decimals": 123,
      "chainId": "<string>",
      "name": "<string>",
      "coinKey": "<string>",
      "priceUSD": "<string>",
      "logoURI": "<string>"
    },
    "toToken": {
      "address": "<string>",
      "symbol": "<string>",
      "decimals": 123,
      "chainId": "<string>",
      "name": "<string>",
      "coinKey": "<string>",
      "priceUSD": "<string>",
      "logoURI": "<string>"
    },
    "fromAddress": "<string>",
    "toAddress": "<string>",
    "slippage": 123
  },
  "estimate": {},
  "integrator": "<string>",
  "includedSteps": [
    {}
  ],
  "referrer": "<string>",
  "execution": {},
  "transactionRequest": {}
}
'
import requests

url = "https://api.portalhq.io/api/v3/clients/me/integrations/lifi/route-step-details"

payload = {
"id": "<string>",
"type": "<string>",
"tool": "<string>",
"toolDetails": {
"key": "<string>",
"name": "<string>",
"logoURI": "<string>"
},
"action": {
"fromChainId": "<string>",
"toChainId": "<string>",
"fromAmount": "<string>",
"fromToken": {
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"chainId": "<string>",
"name": "<string>",
"coinKey": "<string>",
"priceUSD": "<string>",
"logoURI": "<string>"
},
"toToken": {
"address": "<string>",
"symbol": "<string>",
"decimals": 123,
"chainId": "<string>",
"name": "<string>",
"coinKey": "<string>",
"priceUSD": "<string>",
"logoURI": "<string>"
},
"fromAddress": "<string>",
"toAddress": "<string>",
"slippage": 123
},
"estimate": {},
"integrator": "<string>",
"includedSteps": [{}],
"referrer": "<string>",
"execution": {},
"transactionRequest": {}
}
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({
id: '<string>',
type: '<string>',
tool: '<string>',
toolDetails: {key: '<string>', name: '<string>', logoURI: '<string>'},
action: {
fromChainId: '<string>',
toChainId: '<string>',
fromAmount: '<string>',
fromToken: {
address: '<string>',
symbol: '<string>',
decimals: 123,
chainId: '<string>',
name: '<string>',
coinKey: '<string>',
priceUSD: '<string>',
logoURI: '<string>'
},
toToken: {
address: '<string>',
symbol: '<string>',
decimals: 123,
chainId: '<string>',
name: '<string>',
coinKey: '<string>',
priceUSD: '<string>',
logoURI: '<string>'
},
fromAddress: '<string>',
toAddress: '<string>',
slippage: 123
},
estimate: {},
integrator: '<string>',
includedSteps: [{}],
referrer: '<string>',
execution: {},
transactionRequest: {}
})
};

fetch('https://api.portalhq.io/api/v3/clients/me/integrations/lifi/route-step-details', 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/lifi/route-step-details",
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([
'id' => '<string>',
'type' => '<string>',
'tool' => '<string>',
'toolDetails' => [
'key' => '<string>',
'name' => '<string>',
'logoURI' => '<string>'
],
'action' => [
'fromChainId' => '<string>',
'toChainId' => '<string>',
'fromAmount' => '<string>',
'fromToken' => [
'address' => '<string>',
'symbol' => '<string>',
'decimals' => 123,
'chainId' => '<string>',
'name' => '<string>',
'coinKey' => '<string>',
'priceUSD' => '<string>',
'logoURI' => '<string>'
],
'toToken' => [
'address' => '<string>',
'symbol' => '<string>',
'decimals' => 123,
'chainId' => '<string>',
'name' => '<string>',
'coinKey' => '<string>',
'priceUSD' => '<string>',
'logoURI' => '<string>'
],
'fromAddress' => '<string>',
'toAddress' => '<string>',
'slippage' => 123
],
'estimate' => [

],
'integrator' => '<string>',
'includedSteps' => [
[

]
],
'referrer' => '<string>',
'execution' => [

],
'transactionRequest' => [

]
]),
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/lifi/route-step-details"

payload := strings.NewReader("{\n \"id\": \"<string>\",\n \"type\": \"<string>\",\n \"tool\": \"<string>\",\n \"toolDetails\": {\n \"key\": \"<string>\",\n \"name\": \"<string>\",\n \"logoURI\": \"<string>\"\n },\n \"action\": {\n \"fromChainId\": \"<string>\",\n \"toChainId\": \"<string>\",\n \"fromAmount\": \"<string>\",\n \"fromToken\": {\n \"address\": \"<string>\",\n \"symbol\": \"<string>\",\n \"decimals\": 123,\n \"chainId\": \"<string>\",\n \"name\": \"<string>\",\n \"coinKey\": \"<string>\",\n \"priceUSD\": \"<string>\",\n \"logoURI\": \"<string>\"\n },\n \"toToken\": {\n \"address\": \"<string>\",\n \"symbol\": \"<string>\",\n \"decimals\": 123,\n \"chainId\": \"<string>\",\n \"name\": \"<string>\",\n \"coinKey\": \"<string>\",\n \"priceUSD\": \"<string>\",\n \"logoURI\": \"<string>\"\n },\n \"fromAddress\": \"<string>\",\n \"toAddress\": \"<string>\",\n \"slippage\": 123\n },\n \"estimate\": {},\n \"integrator\": \"<string>\",\n \"includedSteps\": [\n {}\n ],\n \"referrer\": \"<string>\",\n \"execution\": {},\n \"transactionRequest\": {}\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/lifi/route-step-details")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"id\": \"<string>\",\n \"type\": \"<string>\",\n \"tool\": \"<string>\",\n \"toolDetails\": {\n \"key\": \"<string>\",\n \"name\": \"<string>\",\n \"logoURI\": \"<string>\"\n },\n \"action\": {\n \"fromChainId\": \"<string>\",\n \"toChainId\": \"<string>\",\n \"fromAmount\": \"<string>\",\n \"fromToken\": {\n \"address\": \"<string>\",\n \"symbol\": \"<string>\",\n \"decimals\": 123,\n \"chainId\": \"<string>\",\n \"name\": \"<string>\",\n \"coinKey\": \"<string>\",\n \"priceUSD\": \"<string>\",\n \"logoURI\": \"<string>\"\n },\n \"toToken\": {\n \"address\": \"<string>\",\n \"symbol\": \"<string>\",\n \"decimals\": 123,\n \"chainId\": \"<string>\",\n \"name\": \"<string>\",\n \"coinKey\": \"<string>\",\n \"priceUSD\": \"<string>\",\n \"logoURI\": \"<string>\"\n },\n \"fromAddress\": \"<string>\",\n \"toAddress\": \"<string>\",\n \"slippage\": 123\n },\n \"estimate\": {},\n \"integrator\": \"<string>\",\n \"includedSteps\": [\n {}\n ],\n \"referrer\": \"<string>\",\n \"execution\": {},\n \"transactionRequest\": {}\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.portalhq.io/api/v3/clients/me/integrations/lifi/route-step-details")

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 \"id\": \"<string>\",\n \"type\": \"<string>\",\n \"tool\": \"<string>\",\n \"toolDetails\": {\n \"key\": \"<string>\",\n \"name\": \"<string>\",\n \"logoURI\": \"<string>\"\n },\n \"action\": {\n \"fromChainId\": \"<string>\",\n \"toChainId\": \"<string>\",\n \"fromAmount\": \"<string>\",\n \"fromToken\": {\n \"address\": \"<string>\",\n \"symbol\": \"<string>\",\n \"decimals\": 123,\n \"chainId\": \"<string>\",\n \"name\": \"<string>\",\n \"coinKey\": \"<string>\",\n \"priceUSD\": \"<string>\",\n \"logoURI\": \"<string>\"\n },\n \"toToken\": {\n \"address\": \"<string>\",\n \"symbol\": \"<string>\",\n \"decimals\": 123,\n \"chainId\": \"<string>\",\n \"name\": \"<string>\",\n \"coinKey\": \"<string>\",\n \"priceUSD\": \"<string>\",\n \"logoURI\": \"<string>\"\n },\n \"fromAddress\": \"<string>\",\n \"toAddress\": \"<string>\",\n \"slippage\": 123\n },\n \"estimate\": {},\n \"integrator\": \"<string>\",\n \"includedSteps\": [\n {}\n ],\n \"referrer\": \"<string>\",\n \"execution\": {},\n \"transactionRequest\": {}\n}"

response = http.request(request)
puts response.read_body
{
  "data": {
    "rawResponse": {}
  }
}
{
"error": "<string>"
}
{
"error": "<string>"
}

Authorizations

Authorization
string
header
required

Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.

Body

application/json

A step object as returned by /lifi/routes (or /lifi/quote). The body is the step itself, not wrapped under a step key. Chain ID fields use CAIP-2 format on input, matching what Portal returned to you.

id
string
required

Unique step identifier from the prior routes/quote response.

type
string
required

Step type (e.g. swap, cross, lifi).

tool
string
required

Identifier of the tool/protocol executing the step.

toolDetails
object
required
action
object
required
estimate
object
integrator
string
includedSteps
object[]
referrer
string
execution
object
transactionRequest
object

Response

Step details retrieved successfully

data
object