> ## Documentation Index
> Fetch the complete documentation index at: https://align.tolbel.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Permanent Route

> Retrieve permanent route details

## Method Signature

```typescript theme={null}
align.crossChain.getPermanentRoute(routeId: string): Promise<PermanentRouteAddress>
```

## Example

```typescript theme={null}
const route = await align.crossChain.getPermanentRoute("route_123...");

console.log(`Deposit Address: ${route.deposit_address}`);
console.log(`Route: ${route.source_network} → ${route.destination_network}`);
```

## Related Methods

<CardGroup cols={2}>
  <Card title="Create Route" icon="route" href="/docs/api/cross-chain/create-permanent-route">
    Create a new route
  </Card>

  <Card title="List Routes" icon="list" href="/docs/api/cross-chain/list-permanent-routes">
    List all routes
  </Card>
</CardGroup>
