# Get crypto transfer history Retrieves all crypto transfers (mints and redemptions) for the customer. Endpoint: GET /transfer/{customerId}/crypto-transfers Version: 1.0 Security: api-key ## Path parameters: - `customerId` (string, required) Customer ID (UUID) Example: "550e8400-e29b-41d4-a716-446655440000" ## Query parameters: - `limit` (number) Maximum number of transfers to return Example: 50 ## Response 200 fields (application/json): - `list` (array) - `list.type` (string) Transfer type Enum: "MINT", "REDEEM" - `list.amount` (string) Transfer amount - `list.address` (string) Blockchain address - `list.chainType` (string) Blockchain type Enum: "RIPPLE", "ETHEREUM", "POLYGON", "AVALANCHE" - `list.status` (string) On-chain status - `list.txHash` (string) Transaction hash - `list.timestamp` (string) Transfer timestamp ## Response 401 fields ## Response 403 fields ## Response 404 fields