> ## 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 Cross-Chain Transfer

> Retrieve cross-chain transfer details and status

## Method Signature

```typescript theme={null}
align.crossChain.getTransfer(
  customerId: string,
  transferId: string
): Promise<CrossChainTransfer>
```

## Parameters

<ParamField path="customerId" type="string" required>
  The unique customer identifier
</ParamField>

<ParamField path="transferId" type="string" required>
  The unique transfer identifier
</ParamField>

## Example

```typescript theme={null}
const transfer = await align.crossChain.getTransfer(
  "123e4567-e89b-12d3-a456-426614174000",
  "xc_123e4567-e89b-12d3-a456-426614174000"
);

console.log(`Status: ${transfer.status}`);
console.log(
  `Source: ${transfer.source_network} → ${transfer.destination_network}`
);
```

## Related Methods

<CardGroup cols={2}>
  <Card title="Create Transfer" icon="link" href="/docs/api/cross-chain/create-transfer">
    Create a cross-chain transfer
  </Card>

  <Card title="Complete Transfer" icon="check" href="/docs/api/cross-chain/complete-transfer">
    Submit tx hash
  </Card>
</CardGroup>
