Zynk
Getting StartedProduct GuidesAPI ReferenceFAQ'sRecipes
Getting StartedProduct GuidesAPI ReferenceFAQ'sRecipes
  1. Teleport - Pay-In Accounts
  • Transformer - Cross border transfer
    • Transformer: Entity
      • Create Entity
      • Entities
      • Entity By ID
      • Entity By Email
      • KYC Status
      • KYC Requirements
      • Submit KYC/KYB
      • Get KYC Documents
    • Transformer: Accounts
      • External Accounts
        • Generate Plaid Link Token
        • Update Plaid Link Token
        • Get External Account Payload Requirements
        • Add External Account
        • Enable External Account
        • Disable External Account
        • Delete External Account
        • Get External Account by ID
        • Get External Accounts
      • Funding Accounts
        • Create Funding Account
        • Activate Funding Account
        • Deactivate Funding Account
        • Funding Account by ID
        • All Funding Accounts
      • Entity Accounts (Deprecated)
        • Add Entity Account
        • Remove Entity Account
        • Get Entity Account
        • Get Entity Accounts
    • Transformer: Transfers
      • Simulate
      • Transfer
      • All transfers for partner
      • Transfer by execution ID
    • Transformer: Utility
      • Partner Payments Account Balance
      • Partner Payments Deposit
      • Get Jurisdictions
    • Webhooks
      • Get Webhook Events History
      • Registered Webhook URL
      • Register or Update Webhook URL
  • Transporter - Automated Liquidity Manager
    • ALM Market
      • Create Reserve Quote
      • Accept Reserve Frame
      • Get Active Reserves
      • Get All Reserves
    • Transaction Details by ID, Partner Transaction ID, or Transaction Hash
      GET
    • Transaction Details
      GET
    • Transaction Details by ID
      GET
    • Partner Details
      GET
    • Initiate Transaction
      POST
    • Replenish Fee Quote
      POST
    • Quote Fulfilled
      POST
    • Replenish Initiate
      POST
    • Replenish Batch Transaction
      POST
    • Replenish Fee Quote Batch
      POST
  • Teleport - Pay-In Accounts
    • Create Teleport Route
      POST
    • Update Teleport Destination
      POST
    • Toggle Teleport Status
      POST
    • Teleport Details
      GET
    • Teleport Routes by Entity
      GET
  • Continuum - Wallet Infrastructure
    • Authentication
      • Register primary authentication
    • Wallet Management
      • Prepare wallet creation challenge (Step 1)
      • Submit wallet creation activity (Step 2)
    • Account Management
      • Prepare account creation challenge (Step 1)
      • Submit account creation activity (Step 2)
    • Passkey Management
      • Prepare passkey registration (Step 1)
      • Submit passkey registration (Step 2)
      • Get passkey authenticators
      • Prepare passkey deletion (Step 1)
      • Submit passkey deletion (Step 2)
    • Wallet Information
      • Get wallet details
      • Get wallet balances
      • Get transactions for address
    • Sessions
      • Initiate OTP delivery
      • Start authentication session
  • Archive
    • KYC Documents
    • Prepaid KYC Balance
    • Prepaid KYC Deposit
  1. Teleport - Pay-In Accounts

Teleport Details

GET
/api/v1/transformer/teleport/{teleportId}
Retrieves detailed information about a specific teleport route including:
Route status (active/inactive)
Funding account and destination account details
Complete transaction history with amounts, fees, and exchange rates
Source and destination jurisdiction information

Request

Authorization
API Key
Add parameter in header
X-API-Token
Example:
X-API-Token: ********************
or
Path Params

Responses

🟢200OK
application/json
Teleport details retrieved successfully
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/transformer/teleport/' \
--header 'X-API-Token: <api-key>'
Response Response Example
{
    "success": true,
    "data": {
        "message": "Teleport route details fetched successfully",
        "data": {
            "routeId": "teleport_8b118472_1a0b_40b5_aa1b_0792f4df69b4",
            "fundingAccountId": "fa_56b56fa7_5b96_4aff_97f1_cfd2a776d576",
            "accountOwner": {
                "entityId": "entity_41db27c3_6994_4be4_b7bc_d38c04af8e5d",
                "name": "John Doe"
            },
            "depositAccountInfo": {
                "currency": "usd",
                "bank_name": "Bank of Nowhere",
                "bank_address": "1800 North Pole St., Orlando, FL 32801",
                "bank_routing_number": "101019644",
                "bank_account_number": "900265209093",
                "payment_rail": "ach_push"
            },
            "sourceJurisdiction": {
                "id": "jurisdiction_8eeecfd0_2944_46f4_b7f3_ae4cd7b41f41",
                "name": "United States",
                "currency": "USD",
                "type": "country"
            },
            "externalAccountId": "acc_5f687a0a_b91b_4250_9484_7ae7abe4277e",
            "destinationEntity": {
                "entityId": "entity_41db27c3_6994_4be4_b7bc_d38c04af8e5d",
                "name": "John Doe"
            },
            "destination": {
                "walletAddress": "5sFAivsBUHKsYxzbQok1XVeTh9ZswfsDUcd6h6gvhPPZ"
            },
            "destinationJurisdiction": {
                "id": "jurisdiction_04cc79dc_4df5_435d_9e21_107b1ff559b7",
                "name": "Solana Devnet",
                "currency": "USDC",
                "type": "blockchain"
            },
            "routeStatus": "inactive",
            "totalTransactions": 0,
            "history": []
        }
    }
}
Modified at 2025-11-15 17:07:24
Previous
Toggle Teleport Status
Next
Teleport Routes by Entity
Built with