Guía de Cotizaciones
En esta guía aprenderás a crear y consultar cotizaciones con el SDK de TypeScript.
Crear cotización
const quotation = await client.createQuotation.create({
sourceCurrency: "USDT",
targetCountry: "VE",
targetCurrency: "VES",
amount: 1000,
amountType: "TARGET",
payoutType: "P2P_PHONE_TRANSFER",
});
Consultar cotización
const quote = await (client as any).getQuotation.getById(5205);
Siguiente Paso
Continúa con la Guía de Órdenes para crear órdenes de pago.



