GET /api/v3/time request works wrong

Hi everyone,
I am trying to GET request to /api/v3/time with nodejs here is my code:

const express = require(‘express’);
const app = express();
const port = 1200;
const https = require(‘https’);
const binance = require(’./binanceConfig.js’);
const url = ‘https://api.binance.com/api/v3/time’;

app.get(’/’, (req, res) => {
res.send(“ok”);
https.get(url, function(cevap){
console.log(gelen);
});
});

app.listen(port, () =>{
console.log(“listenin on” + port);
});

and this is console.log:
https://codeshare.io/9O4d4B

What i am doing wrong?

I changed my code now i can get servertime but how can i seperate this response?
I only wanted to use server time value(1666870572170)

The server returnes json formated string, you may wish to concert to json object and get value of it.