v1

latestOpenAPI 3.0.32026-07-2210020.3 KB
Transfer

Check transfer status

Check the current status of a transfer. Returns the status and an optional LayerZero Scan explorer URL.

get/status/{quoteId}

Path parameters

quoteIdstring required
Example:quote_abc123

The quote ID from the /quotes response

Query parameters

txHashstring
Example:0x...

Optional transaction hash for faster status lookup

Response

Successfully retrieved status

status'PENDING' | 'PROCESSING' | 'SUCCEEDED' | 'FAILED' | 'UNKNOWN'
explorerUrlstring

Example response

{
  "status": "SUCCEEDED",
  "explorerUrl": "https://layerzeroscan.com/tx/...",
  "executionHistory": [
    {
      "event": "SENT",
      "transaction": {
        "chainKey": "base",
        "hash": "0x..."
      }
    },
    {
      "event": "DELIVERED",
      "transaction": {
        "chainKey": "optimism",
        "hash": "0x..."
      }
    }
  ]
}