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": {}
}
'
{
  "data": {
    "rawResponse": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.portalhq.io/llms.txt

Use this file to discover all available pages before exploring further.

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