How to get the exact number? (API)

Hello! I'm trying to get some number via API, via Web I can see the exact number that is 84,193,790.55, but when I get the response via an API call, I get 8.419379055475514E7. I know that only by multypling would be enough, but is there a way to prevent this? Maybe the base_type? Thanks

Hi @Kollerman
The exact number is what you are seeing in the API.
The visually formatted number is what you see in the GUI.
You would have to do the calculation yourself if you need something different from the API.

1 Like

I solved it with parseFloat. Thx