Getting Started

Please complete this form to obtain your API Keys.

Mathematical Operations

All numbers sent and received through the Uniramp API are represented as integers. No floating point or decimal values are used by the API.

Representing Fiat and Cryptocurrency

Numbers representing currencies (fiat and cryptocurrency) should be converted to the smallest unit. For example, Ethereum should be represented as Wei and United States Dollar should be represented by cents. A $100 USD can be represented by 10000. A formula for the conversion can be found below:

amount * (10 ** decimal)

We highly recommend using bigint (for javascript) or an equivalent data type.

Last updated