Traqo APIs
Traqo API v2 (Sim based tracking)
This page contains all the restful APIs for interation with Traqo Server.
Our old API documetation can be found at -
https://documenter.getpostman.com/view/12517582/TVCb3pi1
Authentication
You can authenticate yourself using API Credentials-
- You can pass your API Credentials as Basic Auth Header in all the requests.
- There is no need of login for this method
Request Limit
Maximum 10 requests/second is allowed to our server-
- If more than 10 requests is made in a second, server will discard that request and send HTTP 503 response
Special Note (Low balance)
All our APIs would be barred if user has low balance in their account-
- If there is low balance, you'll receive HTTP 403 response with below body -
{
"status": "low_balance"
}
You can use this endpoint to check concent status of the passed mobile number.
Body Parameters
Parameter | Mandatory | Description |
---|---|---|
tel | Yes | 10 digit comma seperated mobile number used for creating trip |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Endpoint:
Method: GET
Type: RAW
URL: https://dashboard.traqo.in/api/v3/check_consent/
Body:
{
"tel":"79056XXXXX"
}
More example Requests/Responses:
I. Example Request: Success response
Body:
{
"tel":"790560XXXX"
}
I. Example Response: Success response
{
"consent": "PENDING",
"tel": "790560XXXX",
"operator": "Jio"
}
Status Code: 200
2. Create Trip
This endpoint is used to Create a trip.
Body Parameters
Parameter | Mandatory | Description |
---|---|---|
tel | Yes | 10 digit comma seperated mobile numbers for tracking |
src | Yes | Comma separated coordinates for source location i.e. 12.8445, 23.823 |
dest | Yes | Comma separated coordinates for destination location i.e. 12.7445, 23.223 |
srcname | No | Source location name |
destname | No | Destination location name |
invoice | No | Invoice id e.g. #invoice2323 |
truck_number | No | Vehicle number e.g. PB 22 U 0662 |
eta_days | No | A number representing no. of days it will take for the truck to reach destination from source |
eta_time | No | Epoch value of the expected time to reach the destination e.g. 1594023550916 for Jul 06 2020 13:49:10 GMT+0530 |
eta_hrs | No | No. of hours it'll take to reach the destination |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Missing any mandatory param (e.g. src)
{
"status": "true",
"error": "'src'"
}
Endpoint:
Method: POST
Type: RAW
URL: https://dashboard.traqo.in/api/v3/trip/create/
Body:
{
"tel": "79056XXXXXX",
"src": "25.3176,82.9739",
"dest": "25.4358,81.8463",
"srcname": "Mumbai",
"destname": "Delhi",
"truck_number": "PB 22 U 0662",
"invoice": "ABC2323F",
"eta_hrs":"4"
}
More example Requests/Responses:
I. Example Request: Success Submit Trip
Body:
{
"tel": "79056XXXXXX",
"src": "25.3176,82.9739",
"dest": "25.4358,81.8463",
"srcname": "Mumbai",
"destname": "Delhi",
"truck_number": "PB 22 U 0662",
"invoice": "ABC2323F",
"eta_hrs":"4"
}
I. Example Response: Success Submit Trip
{
"status": "success",
"tripId": "dd6ddcc8-7f26-4f0f-a65f-3ac79d51732a"
}
Status Code: 200
3. End Trip
This endpoint is used to end or close a trip .
Body Parameters
Parameter | Mandatory | Description |
---|---|---|
id | Yes | Trip id received in response of submit trip API |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Missing mandatory param (e.g. id)
{
"status": "true",
"error": "'id'"
}
Endpoint:
Method: POST
Type: RAW
URL: https://dashboard.traqo.in/api/v3/trip/end/
Body:
{
"id":"dd6ddcc8-7f26-4f0f-a65f-3ac79d51732a"
}
More example Requests/Responses:
I. Example Request: Success End Trip
Body:
{
"id":"dd6ddcc8-7f26-4f0f-a65f-3ac79d51732a"
}
I. Example Response: Success End Trip
{
"status": "success"
}
Status Code: 200
4. Update Trip
This endpoint is used to update a trip .
Notes
New phone number can be passed in tel parameter to update current phone number of a running tripBody Parameters
Parameter | Mandatory | Description |
---|---|---|
id | Yes | Trip id received in response of submit trip API |
tel | No | 10 digit comma seperated mobile numbers for tracking |
src | No | Comma separated coordinates for source location i.e. 12.8445, 23.823 |
dest | No | Comma separated coordinates for destination location i.e. 12.7445, 23.223 |
srcname | No | Source location name |
destname | No | Destination location name |
invoice | No | Invoice id e.g. #invoice2323 |
truck_number | No | Vehicle number e.g. PB 22 U 0662 |
eta_days | No | A number representing no. of days it will take for the truck to reach destination from source |
eta_time | No | Epoch value of the expected time to reach the destination e.g. 1594023550916 for Jul 06 2020 13:49:10 GMT+0530 |
eta_hrs | No | No. of hours it'll take to reach the destination |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Missing mandatory param (e.g. id)
{
"status": "true",
"error": "'id'"
}
Endpoint:
Method: POST
Type: RAW
URL: https://dashboard.traqo.in/api/v3/trip/update/
Body:
{
"id":"dd6ddcc8-7f26-4f0f-a65f-3ac79d51732a",
"tel":"79056XXXXX"
}
More example Requests/Responses:
I. Example Request: Success Update Trip
Body:
{
"id":"dd6ddcc8-7f26-4f0f-a65f-3ac79d51732a",
"tel":"79056XXXXX"
}
I. Example Response: Success Update Trip
{
"status": "success"
}
Status Code: 200
5. Trip's Current Status
You can use this endpoint to fetch the details of a trip which also includes the last known location.
Body Parameters
Notes
- Atleast one of the below three parameters should be passed
Parameter | Mandatory | Description |
---|---|---|
invoice | No | invoice received in response of submit trip API |
id | No | trip_id received in response of submit trip API |
lr_number | No | lr_number received in response of submit trip API |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Endpoint:
Method: GET
Type: RAW
URL: https://dashboard.traqo.in/api/v3/trip/info/
Body:
{
"invoice":"ABC2323F"
}
More example Requests/Responses:
I. Example Request: Trip's Current Status
Body:
{
"invoice":"ABC2323F"
}
I. Example Response: Trip's Current Status
{
"status": "success",
"tel": "79056XXXXX",
"invoice": "ABC2323F",
"lr_number": "",
"truck_number": "PB 22 U 0662",
"origin": {
"loc": [
25.3176,
82.9739
]
},
"destination": {
"loc": [
25.4358,
81.8463
]
},
"last_loc": {
"loc": [
null,
null
],
"time": "2021-01-25 00:02:18.041000",
"address": "None",
"distance_remained": null
},
"eta": null
}
Status Code: 200
6. Fetch Location
This endpoint is for fetching location of a trip
Required Body Parameters
Notes
- Atleast one of the below three parameters should be passed
Parameter | Mandatory | Description |
---|---|---|
invoice | No | invoice received in response of submit trip API |
id | No | trip_id received in response of submit trip API |
lr_number | No | lr_number received in response of submit trip API |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Endpoint:
Method: GET
Type: RAW
URL: https://dashboard.traqo.in/api/v3/trip/location/
Body:
{
"id":"dd6ddcc8-7f26-4f0f-a65f-3ac79d51732a"
}
More example Requests/Responses:
I. Example Request: Fetch Location
Body:
{
"id":"dd6ddcc8-7f26-4f0f-a65f-3ac79d51732a"
}
I. Example Response: Fetch Location
{
"status": "success",
"tel": "79056XXXXX",
"loc": [
null,
null
],
"address": "None",
"time_recorded": "2021-01-25 00:02:18.041000",
"distance_remained": null,
"time_remained": null,
"curr_ETA": null,
"src_ETA": null
}
Status Code: 200
7. Fetch a Trip
This endpoint is for fetching a trip
Body Parameters
Notes
- Atleast one of the below three parameters should be passed
Parameter | Mandatory | Description |
---|---|---|
invoice | No | invoice received in response of submit trip API |
trip_id | No | trip_id received in response of submit trip API |
lr_number | No | lr_number received in response of submit trip API |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Endpoint:
Method: GET
Type: RAW
URL: https://dashboard.traqo.in/api/v4/trip/fetch/
Body:
{
"id":"TN-46196"
}
More example Requests/Responses:
I. Example Request: Fetch a Trip
Body:
{
"id":"TN-46196"
}
I. Example Response: Fetch a Trip
{
"trips": {
"0": {
"trip_id": "TN-46196",
"truck_number": "AP21TXXX",
"start_time": "2022-06-15 06:57:21.308402",
"tel": 62814XXXXX,
"consent_status":"Pending",
"invoice": "78",
"lr_number": "",
"origin": {
"loc": [
13.2592509,
80.3374064
]
},
"destination": {
"loc": [
20.9270333,
78.9507517
]
},
"last_loc": {
"loc": [
21.019066666666667,
79.0315675
],
"time": "2022-06-17 01:58:40",
"address": "Nagpur Ankit Ashokrao Bhurane, Plot No. 4 Maharashtra 441108, India",
"distance_remained": null
},
"eta": "0",
"trip_status": "completed",
"origin_in": "15-Jun 07:40:08",
"origin_out": "15-Jun 11:45:48",
"destination_in": "",
"destination_out": "",
"total_halt_time": "22 Hr",
"halts": [
{
"place_name": "Unnamed Road, Puzhuthivakkam, Tamil Nadu 600120, India",
"start_time": "15-Jun 07:25:05",
"leaving_time": "15-Jun 11:38:09",
"latitude": 13.269241944444445,
"longitude": 80.33140888888889,
"km": 1.3
},
{
"place_name": "Near Sholavaram P.S. Bus Stop, Chozhavaram Nagar, Alinjivakkam, Ponneri, Tamil Nadu",
"start_time": "15-Jun 12:10:10",
"leaving_time": "15-Jun 13:14:06",
"latitude": 13.22643388888889,
"longitude": 80.16386750000001,
"km": 18.8
},
{
"place_name": "in Nancharamma Colony, Vedayapalem, Nellore, Andhra Pradesh",
"start_time": "15-Jun 17:16:38",
"leaving_time": "15-Jun 18:24:37",
"latitude": 14.3951475,
"longitude": 79.94175916666667,
"km": 132.2
},
{
"place_name": "RXFV+49 Sambasivapuram, Andhra Pradesh, India",
"start_time": "15-Jun 19:42:51",
"leaving_time": "15-Jun 22:14:37",
"latitude": 14.826811666666666,
"longitude": 79.99166972222223,
"km": 48.3
},
{
"place_name": "Ramnagar 10th lane ( 2nd cross H.no- 6-62, Ongole, Andhra Pradesh 523001, India",
"start_time": "16-Jun 00:07:34",
"leaving_time": "16-Jun 10:36:36",
"latitude": 15.484135277777776,
"longitude": 80.06082777777777,
"km": 73.5
},
{
"place_name": "NH 44, Telangana 503164, India",
"start_time": "16-Jun 14:13:32",
"leaving_time": "16-Jun 16:35:36",
"latitude": 18.582290277777776,
"longitude": 78.22441583333334,
"km": 396.1
},
{
"place_name": "XG9P+7V Marath Wakadi, Maharashtra, India",
"start_time": "16-Jun 21:18:42",
"leaving_time": "16-Jun 22:25:38",
"latitude": 19.96832722222222,
"longitude": 78.53716138888889,
"km": 157.6
}
]
}
},
"status": "success"
}
Status Code: 200
8. Fetch all trips
This endpoint is for fetching all trips between specific start and end dates ( passed in json body ).
The response of it also contains total halt time and halt locations, please check example for more information.
Json Body Parameters
Notes
By default last 30 days of trips are visible if below params not passed.
Parameter | Mandatory | Description |
---|---|---|
sdate | No | starting date for trip creation timestamp in dd-mm-yyyy format |
edate | No | ending date for trip creation timestamp in dd-mm-yyyy format |
username | No | Phone number of subuser (if using organization in dashboard) Passing this parameter will restrict trips list corresponding to that user only |
Method: GET
Type: RAW
URL: https://dashboard.traqo.in/api/v4/trips/fetch/
***Body:***
{
"sdate":"07-06-2022",
"edate":"08-06-2022"
}
***More example Requests/Responses:***
#### I. Example Request: Fetch all trips
***Body:***
{
"sdate":"07-06-2022",
"edate":"08-06-2022"
}
#### I. Example Response: Fetch all trips
{
"status": "success",
"tot_trips": 2,
"tot_consent_pending": 1,
"trips": [
{
"trip_id":"5c68608a-6575-4b03-bf57-9a050a7ca",
"truck_number": "CG04MCXXXX",
"start_time": "2022-06-07 22:09:56.783138",
"tel": 881745XXX,
"consent_status":"Pending",
"invoice": "72",
"lr_number": "",
"is_completed": false,
"distance_travel": "35 KM",
"total_idstance": "39 KM",
"origin": {
"loc": [
17.621462,
83.229793
]
},
"destination": {
"loc": [
21.6287621,
82.1143269
]
},
"last_loc": {
"loc": [
19.63997138888889,
83.48257527777778
],
"time": "2022-06-09 06:03:06",
"address": "JFPH+9M Jumuruguda, Odisha, India",
"distance_remained": null
},
"eta": "0",
"trip_status": "running",
"origin_in": "08-Jun 18:56:24",
"origin_out": "08-Jun 20:35:59",
"destination_in": "",
"destination_out": "",
"total_halt_time": "18 Hr",
"halts": [
{
"place_name": "Unnamed Road, Visakhapatnam Airport, Visakhapatnam, Andhra Pradesh 530012, India",
"start_time": "07-Jun 00:11:36",
"leaving_time": "08-Jun 12:54:29",
"latitude": 17.665039166666666,
"longitude": 83.19888361111111,
"km": 1.3
},
{
"place_name": "Vizag - Srikakulam Hwy, Kambalakonda Eco Tourism Park, Visakhapatnam, Andhra Pradesh 530045, India",
"start_time": "08-Jun 14:36:09",
"leaving_time": "08-Jun 15:46:32",
"latitude": 17.77135138888889,
"longitude": 83.34707027777777,
"km": 12
},
{
"place_name": "Unnamed Road, Vindhyavasi, Andhra Pradesh 535580, India",
"start_time": "08-Jun 18:01:34",
"leaving_time": "08-Jun 20:30:36",
"latitude": 18.364698888888892,
"longitude": 83.35799222222222,
"km": 23.8
},
{
"place_name": "in BahinipatiKerada, Seskhal, Rayagada, Odisha",
"start_time": "08-Jun 22:04:33",
"leaving_time": "09-Jun 00:14:22",
"latitude": 18.965030833333334,
"longitude": 83.43783611111111,
"km":15.2
}
]
},
{
"trip_id":"11139682-aa30-4152-9388-7af5db1a8",
"truck_number": "CG04MXXXXX",
"start_time": "2022-06-07 21:48:48.358026",
"tel": 78282XXXXX,
"invoice": "71",
"consent_status":"Allowed",
"lr_number": "",
"is_completed": false,
"distance_travel": "15 KM",
"total_idstance": "29 KM",
"origin": {
"loc": [
17.621462,
83.229793
]
},
"destination": {
"loc": [
21.6287621,
82.1143269
]
},
"last_loc": {
"loc": [
null,
null
],
"time": "2022-06-07 21:48:47.707258",
"address": "None",
"distance_remained": null
},
"eta": "0",
"trip_status": "running",
"origin_in": "",
"origin_out": "",
"destination_in": "",
"destination_out": "",
"total_halt_time": "",
"halts": []
}
]
}
***Status Code:*** 200
### 9. Fetch Trip Location History Whole location updates against any particular trip can be fetched via this API ***Endpoint:***
Method: POST
Type: RAW
URL: https://dashboard.traqo.in/api/v4/trip/fetch_route_history/
***Body:***
{
"id":"70221"
}
***More example Requests/Responses:***
#### I. Example Request: Fetch Trip Location History
***Body:***
{
"id":"70221"
}
#### I. Example Response: Fetch Trip Location History
{
"locations": {
"0": {
"latitude": 20.06542,
"longitude": 74.124672,
"place": "Niphad, Nashik, Maharashtra, 422230, India",
"time_recorded": "22-10-2022 12:14:02"
},
"1": {
"latitude": 20.100399,
"longitude": 74.22408,
"place": "SH 30, Vinchur, Niphad, Nashik, Maharashtra, 422305, India",
"time_recorded": "22-10-2022 16:07:13"
},
"2": {
"latitude": 20.054138,
"longitude": 74.35424,
"place": "State Highway 30, Yevla, Nashik, Maharashtra, 422305, India",
"time_recorded": "22-10-2022 16:28:05"
},
"3": {
"latitude": 20.0411015,
"longitude": 74.48386500000001,
"place": "State Highway 30, Yeola, Yevla, Nashik, Maharashtra, 423400, India",
"time_recorded": "22-10-2022 16:43:16"
},
"4": {
"latitude": 20.003473,
"longitude": 74.5932,
"place": "NH752H, Yevla, Nashik, Maharashtra, 423402, India",
"time_recorded": "22-10-2022 17:19:04"
},
"5": {
"latitude": 19.926488499999998,
"longitude": 74.72315800000001,
"place": "NH752H, Vaijapur, Aurangabad, Maharashtra, 423700, India",
"time_recorded": "22-10-2022 17:36:01"
},
"6": {
"latitude": 19.870634,
"longitude": 74.81259,
"place": "SH179, Vaijapur, Aurangabad, Maharashtra, 423700, India",
"time_recorded": "22-10-2022 18:26:49"
},
"7": {
"latitude": 19.80088,
"longitude": 74.87406,
"place": "Chhatrapati Shivaji Maharaj Chowk Road, Vaijapur, Aurangabad, Maharashtra, India",
"time_recorded": "22-10-2022 18:42:50"
},
"8": {
"latitude": 19.704288,
"longitude": 75.00838,
"place": "Gangapur, Aurangabad, Maharashtra, 431109, India",
"time_recorded": "22-10-2022 19:00:14"
},
"9": {
"latitude": 19.706661,
"longitude": 75.0957,
"place": "NH753F, Gangapur, Aurangabad, Maharashtra, 431110, India",
"time_recorded": "22-10-2022 19:20:28"
},
"10": {
"latitude": 19.687359,
"longitude": 75.20162,
"place": "Gangapur, Aurangabad, Maharashtra, 431110, India",
"time_recorded": "22-10-2022 19:38:34"
},
"11": {
"latitude": 19.700897,
"longitude": 75.298615,
"place": "Bidkin, Paithan, Aurangabad, Maharashtra, 431105, India",
"time_recorded": "22-10-2022 19:57:15"
},
"12": {
"latitude": 19.72373,
"longitude": 75.36477,
"place": "Paithan, Aurangabad, Maharashtra, 431105, India",
"time_recorded": "22-10-2022 20:13:52"
},
"13": {
"latitude": 19.71663,
"longitude": 75.534294,
"place": "Adul, Paithan, Aurangabad, Maharashtra, India",
"time_recorded": "22-10-2022 20:42:20"
},
"14": {
"latitude": 19.838537,
"longitude": 75.5275,
"place": "Aurangabad, Maharashtra, 431007, India",
"time_recorded": "22-10-2022 21:02:42"
},
"15": {
"latitude": 19.871336,
"longitude": 75.567856,
"place": "Aurangabad, Maharashtra, India",
"time_recorded": "22-10-2022 21:18:50"
},
"16": {
"latitude": 19.807133,
"longitude": 75.722664,
"place": "Badnapur, Jalna, Maharashtra, India",
"time_recorded": "22-10-2022 22:08:42"
},
"17": {
"latitude": 19.863825,
"longitude": 75.80112,
"place": "Badnapur, Jalna, Maharashtra, 431203, India",
"time_recorded": "22-10-2022 22:25:00"
},
"18": {
"latitude": 19.863514,
"longitude": 75.881546,
"place": "Mastgarh, Jalna, Maharashtra, 431200, India",
"time_recorded": "22-10-2022 22:40:55"
},
"19": {
"latitude": 19.891834,
"longitude": 75.98657,
"place": "Aurangabad Nagpur Road, Jalna, Maharashtra, 431200, India",
"time_recorded": "22-10-2022 23:14:45"
},
"20": {
"latitude": 19.958443,
"longitude": 76.11441,
"place": "SH183, Deulgaon Raja, Buldhana, Maharashtra, 443204, India",
"time_recorded": "22-10-2022 23:39:01"
},
"21": {
"latitude": 19.957268,
"longitude": 76.181946,
"place": "Sindkhed Raja, Buldhana, Maharashtra, 443203, India",
"time_recorded": "22-10-2022 23:54:53"
},
"22": {
"latitude": 20.007114,
"longitude": 76.30961,
"place": "Dusarbid, Sindkhed Raja, Buldhana, Maharashtra, 443308, India",
"time_recorded": "23-10-2022 00:29:00"
},
"23": {
"latitude": 20.018648,
"longitude": 76.381516,
"place": "NH753C, Bhanapur, Lonar, Buldhana, Maharashtra, 443302, India",
"time_recorded": "23-10-2022 00:46:51"
},
"24": {
"latitude": 20.0768795,
"longitude": 76.50001,
"place": "NH753C, Bhanapur, Lonar, Buldhana, Maharashtra, 443302, India",
"time_recorded": "23-10-2022 01:04:44"
},
"25": {
"latitude": 20.150927,
"longitude": 76.57833,
"place": "Mehkar, Buldhana, Maharashtra, 443301, India",
"time_recorded": "23-10-2022 01:43:43"
},
"26": {
"latitude": 20.169771,
"longitude": 76.649,
"place": "MDR47, Anjani Budruk, Mehkar, Buldhana, Maharashtra, 443301, India",
"time_recorded": "23-10-2022 02:00:32"
},
"27": {
"latitude": 20.20193,
"longitude": 76.811424,
"place": "NH753C, Malegaon, Washim, Maharashtra, India",
"time_recorded": "23-10-2022 02:38:09"
},
"28": {
"latitude": 20.237595,
"longitude": 76.997734,
"place": "NH161, Malegaon, Washim, Maharashtra, 444503, India",
"time_recorded": "23-10-2022 03:13:02"
},
"29": {
"latitude": 20.326796,
"longitude": 77.16666,
"place": "NH753C, Malegaon, Washim, Maharashtra, 444506, India",
"time_recorded": "23-10-2022 04:15:00"
},
"30": {
"latitude": 20.370918,
"longitude": 77.25106,
"place": "NH161A, Shelu, Mangrulpir, Washim, Maharashtra, 444402, India",
"time_recorded": "23-10-2022 04:59:56"
},
"31": {
"latitude": 20.478205,
"longitude": 77.48202,
"place": "NH361C, Karanja (Laad), Karanja, Washim, Maharashtra, 444105, India",
"time_recorded": "23-10-2022 05:59:44"
},
"32": {
"latitude": 20.590004,
"longitude": 77.76501,
"place": "NH753C, Nandgaon-Khandeshwar, Amravati, Maharashtra, India",
"time_recorded": "23-10-2022 06:38:45"
},
"33": {
"latitude": 20.608442,
"longitude": 77.817825,
"place": "NH753C, Nandgaon-Khandeshwar, Amravati, Maharashtra, India",
"time_recorded": "23-10-2022 06:58:22"
},
"34": {
"latitude": 20.647724,
"longitude": 77.87494,
"place": "Nandgaon-Khandeshwar, Amravati, Maharashtra, 444708, India",
"time_recorded": "23-10-2022 07:16:35"
},
"35": {
"latitude": 20.665771,
"longitude": 78.012535,
"place": "NH753C, Chandur Railway, Amravati, Maharashtra, India",
"time_recorded": "23-10-2022 07:35:05"
},
"36": {
"latitude": 20.682710999999998,
"longitude": 78.1515125,
"place": "NH753C, Devgav, Dhamangaon Railway, Amravati, Maharashtra, India",
"time_recorded": "23-10-2022 08:17:42"
},
"37": {
"latitude": 20.638983,
"longitude": 78.289055,
"place": "Deoli, Wardha, Maharashtra, 442306, India",
"time_recorded": "23-10-2022 09:07:44"
},
"38": {
"latitude": 20.71922,
"longitude": 78.31828,
"place": "Eklaspur, Pulgaon, Deoli, Wardha, Maharashtra, 442302, India",
"time_recorded": "23-10-2022 09:23:24"
},
"39": {
"latitude": 20.729525,
"longitude": 78.375275,
"place": "NH347A, Pulgaon, Deoli, Wardha, Maharashtra, 442302, India",
"time_recorded": "23-10-2022 09:38:29"
},
"40": {
"latitude": 20.69582,
"longitude": 78.54449,
"place": "NH361, Wardha, Maharashtra, 442001, India",
"time_recorded": "23-10-2022 10:04:44"
},
"41": {
"latitude": 20.774387,
"longitude": 78.59532,
"place": "Wardha, Maharashtra, 442001, India",
"time_recorded": "23-10-2022 10:20:56"
},
"42": {
"latitude": 20.835352,
"longitude": 78.70614,
"place": "Sailu, Seloo, Wardha, Maharashtra, 442104, India",
"time_recorded": "23-10-2022 10:38:23"
},
"43": {
"latitude": 20.845577,
"longitude": 78.84541,
"place": "NH361, Seldoh, Seloo, Wardha, Maharashtra, India",
"time_recorded": "23-10-2022 10:56:29"
},
"44": {
"latitude": 20.993649,
"longitude": 79.036,
"place": "NH44, Gumgaon, Nagpur Rural Taluka, Nagpur District, Maharashtra, 441108, India",
"time_recorded": "23-10-2022 11:30:11"
},
"45": {
"latitude": 21.116896,
"longitude": 79.18302,
"place": "Outer Ring Road, Tarodi Budruk, Kamptee Taluka, Nagpur District, Maharashtra, 440035, India",
"time_recorded": "23-10-2022 12:02:33"
},
"46": {
"latitude": 21.138672,
"longitude": 79.22905,
"place": "Bhandara Road, Kamptee Taluka, Nagpur District, Maharashtra, India",
"time_recorded": "23-10-2022 12:22:54"
},
"47": {
"latitude": 21.14099,
"longitude": 79.38561,
"place": "Mathani, Mauda Taluka, Nagpur District, Maharashtra, 441104, India",
"time_recorded": "23-10-2022 12:54:38"
},
"48": {
"latitude": 21.149729,
"longitude": 79.44871,
"place": "NH53, Singori, Mauda Taluka, Nagpur District, Maharashtra, 441104, India",
"time_recorded": "23-10-2022 13:29:46"
},
"49": {
"latitude": 21.15635,
"longitude": 79.57351,
"place": "Shahapur, Bhandara Taluka, Bhandara District, Maharashtra, 441906, India",
"time_recorded": "23-10-2022 13:48:49"
},
"50": {
"latitude": 21.143726,
"longitude": 79.667984,
"place": "NH53;NH247, Kardha, Bhandara Taluka, Bhandara District, Maharashtra, 441924, India",
"time_recorded": "23-10-2022 14:05:24"
},
"51": {
"latitude": 21.12562,
"longitude": 79.73588,
"place": "Amgaon, Bhandara Taluka, Bhandara District, Maharashtra, India",
"time_recorded": "23-10-2022 14:24:25"
},
"52": {
"latitude": 21.063635,
"longitude": 79.8801,
"place": "Pimpalgaon, Lakhani Taluka, Bhandara District, Maharashtra, India",
"time_recorded": "23-10-2022 15:59:47"
},
"53": {
"latitude": 21.085499,
"longitude": 79.996056,
"place": "Sakoli City, Sakoli Taluka, Bhandara District, Maharashtra, 441802, India",
"time_recorded": "23-10-2022 16:18:11"
},
"54": {
"latitude": 21.074968,
"longitude": 80.090614,
"place": "Sadak-Arjuni Taluka, Gondiya District, Maharashtra, 441806, India",
"time_recorded": "23-10-2022 16:36:44"
},
"55": {
"latitude": 21.061491,
"longitude": 80.371025,
"place": "NH543, Deori, Deori Taluka, Gondiya District, Maharashtra, 441901, India",
"time_recorded": "23-10-2022 19:08:39"
},
"56": {
"latitude": 21.108423,
"longitude": 80.57409,
"place": "Dongargarh Tahsil, Rajnandgaon, Chhattisgarh, India",
"time_recorded": "23-10-2022 20:02:08"
},
"57": {
"latitude": 21.0816265,
"longitude": 80.684315,
"place": "NH53, Dongargaon Tahsil, Rajnandgaon, Chhattisgarh, 491557, India",
"time_recorded": "23-10-2022 20:50:15"
},
"58": {
"latitude": 21.071247,
"longitude": 80.819305,
"place": "NH53, Dongargaon Tahsil, Rajnandgaon, Chhattisgarh, 491557, India",
"time_recorded": "23-10-2022 21:59:34"
},
"59": {
"latitude": 21.089403,
"longitude": 80.94096,
"place": "NH53, Pendri, Rajnandgaon Tahsil, Rajnandgaon, Chhattisgarh, 491441, India",
"time_recorded": "23-10-2022 22:15:51"
},
"60": {
"latitude": 21.1297425,
"longitude": 81.163313,
"place": "NH53, Somni, Rajnandgaon Tahsil, Rajnandgaon, Chhattisgarh, India",
"time_recorded": "23-10-2022 22:47:53"
},
"61": {
"latitude": 21.200537,
"longitude": 81.27179,
"place": "Durg, Durg Tahsil, Durg, Chhattisgarh, 491002, India",
"time_recorded": "23-10-2022 23:23:49"
},
"62": {
"latitude": 21.20602,
"longitude": 81.33994,
"place": "Bhilai, Durg Tahsil, Durg, Chhattisgarh, 490001, India",
"time_recorded": "23-10-2022 23:40:22"
},
"63": {
"latitude": 21.20495,
"longitude": 81.39271,
"place": "Bhilai Steel Plant, Bhilai, Durg Tahsil, Durg, Chhattisgarh, 490023, India",
"time_recorded": "23-10-2022 23:56:21"
},
"64": {
"latitude": 21.240845,
"longitude": 81.48863,
"place": "Patan Tahsil, Durg, Chhattisgarh, 490042, India",
"time_recorded": "24-10-2022 00:14:30"
},
"65": {
"latitude": 21.257822,
"longitude": 81.561646,
"place": "NH53, Raipur, Raipur Tahsil, Raipur, Chhattisgarh, 493332, India",
"time_recorded": "24-10-2022 00:31:54"
},
"66": {
"latitude": 21.20839,
"longitude": 81.89199,
"place": "Arang Tahsil, Raipur, Chhattisgarh, India",
"time_recorded": "24-10-2022 01:34:00"
},
"67": {
"latitude": 21.174342,
"longitude": 82.02741,
"place": "Mahasamund Tahsil, Mahasamund, Chhattisgarh, India",
"time_recorded": "24-10-2022 01:52:03"
},
"68": {
"latitude": 21.218657,
"longitude": 82.39661,
"place": "NH53, Mahasamund Tahsil, Mahasamund, Chhattisgarh, 493551, India",
"time_recorded": "24-10-2022 03:19:39"
},
"69": {
"latitude": 21.246582,
"longitude": 82.50587,
"place": "Pithora, Pithora Tahsil, Mahasamund, Chhattisgarh, 493551, India",
"time_recorded": "24-10-2022 03:36:06"
},
"70": {
"latitude": 21.288153,
"longitude": 82.6548,
"place": "Sankra, Pithora Tahsil, Mahasamund, Chhattisgarh, 492112, India",
"time_recorded": "24-10-2022 03:56:04"
},
"71": {
"latitude": 21.296134,
"longitude": 82.890438,
"place": "Basna Tahsil, Mahasamund, Chhattisgarh, India",
"time_recorded": "24-10-2022 04:30:16"
},
"72": {
"latitude": 21.294714,
"longitude": 83.16316,
"place": "Saraipali Tahsil, Mahasamund, Chhattisgarh, India",
"time_recorded": "24-10-2022 05:53:58"
},
"73": {
"latitude": 21.30555,
"longitude": 83.38554,
"place": "NH53, Saraipali Tahsil, Mahasamund, Chhattisgarh, 768033, India",
"time_recorded": "24-10-2022 06:23:51"
},
"74": {
"latitude": 21.307142,
"longitude": 83.43604,
"place": "Garbhana, Sohela, Bargarh, Odisha, 768033, India",
"time_recorded": "24-10-2022 06:40:33"
},
"75": {
"latitude": 21.313257,
"longitude": 83.4839,
"place": "Kendpāli, Bargarh Sadar, Bargarh, Odisha, India",
"time_recorded": "24-10-2022 07:47:53"
},
"76": {
"latitude": 21.34787,
"longitude": 83.61559,
"place": "NH53, Khajūrtikra, Bargarh, Odisha, 768028, India",
"time_recorded": "24-10-2022 08:07:54"
},
"77": {
"latitude": 21.363338,
"longitude": 83.72042,
"place": "NH53, Budelpāli, Bargarh, Odisha, 768027, India",
"time_recorded": "24-10-2022 08:23:46"
},
"78": {
"latitude": 21.40711,
"longitude": 83.84466,
"place": "Bhoitikra, Gartiapāli, Attabira, Bargarh, Odisha, 768111, India",
"time_recorded": "24-10-2022 08:41:37"
},
"79": {
"latitude": 21.50033,
"longitude": 83.9463,
"place": "Sambalpur, Sambalpur (M), Sambalpur, Odisha, 768003, India",
"time_recorded": "24-10-2022 08:59:50"
},
"80": {
"latitude": 21.48626,
"longitude": 83.992615,
"place": "Sambalpur, Sambalpur (M), Sambalpur, Odisha, 768004, India",
"time_recorded": "24-10-2022 09:20:03"
},
"81": {
"latitude": 21.456455,
"longitude": 84.09902,
"place": "Jayantpur, Sadar, Sambalpur, Odisha, India",
"time_recorded": "24-10-2022 09:38:00"
},
"82": {
"latitude": 21.441349,
"longitude": 84.189606,
"place": "Gaurpali, Jamankira, Sambalpur, Odisha, 768112, India",
"time_recorded": "24-10-2022 09:54:06"
},
"83": {
"latitude": 21.518757,
"longitude": 84.35162,
"place": "NH53, Jamankira, Sambalpur, Odisha, India",
"time_recorded": "24-10-2022 11:16:13"
},
"84": {
"latitude": 21.528133,
"longitude": 84.44483,
"place": "Tikilpada, Jamankira, Sambalpur, Odisha, India",
"time_recorded": "24-10-2022 11:48:00"
},
"85": {
"latitude": 21.53923,
"longitude": 84.72707,
"place": "Deogarh, Debagarh, Odisha, 768108, India",
"time_recorded": "24-10-2022 12:30:04"
},
"86": {
"latitude": 21.504074,
"longitude": 84.84534,
"place": "Basaloi, Debagarh, Odisha, India",
"time_recorded": "24-10-2022 12:45:56"
},
"87": {
"latitude": 21.547958,
"longitude": 84.93717,
"place": "NH49, Barkot, Debagarh, Odisha, 768110, India",
"time_recorded": "24-10-2022 13:01:52"
},
"88": {
"latitude": 21.523548,
"longitude": 85.04481,
"place": "NH49, Barkot, Debagarh, Odisha, 768110, India",
"time_recorded": "24-10-2022 13:17:52"
},
"89": {
"latitude": 21.4527215,
"longitude": 85.15653,
"place": "NH49, Pal Lahara, Palalahada, Anugul, Odisha, 759119, India",
"time_recorded": "24-10-2022 13:33:58"
},
"90": {
"latitude": 21.443514,
"longitude": 85.28528,
"place": "NH49, Kanjipani, Kendujhar, Odisha, 758084, India",
"time_recorded": "24-10-2022 21:03:49"
},
"91": {
"latitude": 21.399889,
"longitude": 85.341934,
"place": "Telkoi, Kendujhar, Odisha, India",
"time_recorded": "24-10-2022 21:19:54"
},
"92": {
"latitude": 21.38371,
"longitude": 85.39327,
"place": "Telkoi, Kendujhar, Odisha, 758019, India",
"time_recorded": "24-10-2022 22:44:04"
},
"93": {
"latitude": 21.548628,
"longitude": 85.49382,
"place": "NH49, Kanjipani, Kendujhar, Odisha, 758011, India",
"time_recorded": "24-10-2022 23:07:03"
},
"94": {
"latitude": 21.606686,
"longitude": 85.51535,
"place": "Kendujhar Sadar, Kendujhar, Odisha, India",
"time_recorded": "24-10-2022 23:26:03"
},
"95": {
"latitude": 21.665218,
"longitude": 85.612495,
"place": "Kendujhargarh, Kendujhar Town, Kendujhar, Odisha, 758001, India",
"time_recorded": "25-10-2022 00:10:02"
},
"96": {
"latitude": 21.710138,
"longitude": 85.705737,
"place": "NH49, Turumunga, Kendujhar, Odisha, 758046, India",
"time_recorded": "25-10-2022 00:28:13"
},
"97": {
"latitude": 21.79273,
"longitude": 85.804825,
"place": "Turumunga, Kendujhar, Odisha, 758017, India",
"time_recorded": "25-10-2022 07:17:44"
},
"98": {
"latitude": 21.852774,
"longitude": 85.90739,
"place": "Khichina, Raruan, Mayurbhanj, Odisha, 757039, India",
"time_recorded": "25-10-2022 08:21:42"
},
"99": {
"latitude": 21.873806,
"longitude": 85.964165,
"place": "NH49, Khichina, Raruan, Mayurbhanj, Odisha, 757039, India",
"time_recorded": "25-10-2022 08:38:04"
},
"100": {
"latitude": 21.968569000000002,
"longitude": 86.09048,
"place": "NH49, Joshipur, Jashipur, Mayurbhanj, Odisha, 757034, India",
"time_recorded": "25-10-2022 09:09:58"
},
"101": {
"latitude": 21.97686,
"longitude": 86.14547,
"place": "Jashipur, Mayurbhanj, Odisha, 757034, India",
"time_recorded": "25-10-2022 11:25:34"
},
"102": {
"latitude": 22.07967,
"longitude": 86.232475,
"place": "NH49, Bisoi, Mayurbhanj, Odisha, 757033, India",
"time_recorded": "25-10-2022 11:41:30"
},
"103": {
"latitude": 22.113825,
"longitude": 86.312126,
"place": "NH49, Bisoi, Mayurbhanj, Odisha, 757033, India",
"time_recorded": "25-10-2022 11:58:18"
},
"104": {
"latitude": 22.16137,
"longitude": 86.40927,
"place": "NH49, Bisoi, Mayurbhanj, Odisha, 757033, India",
"time_recorded": "25-10-2022 12:13:48"
},
"105": {
"latitude": 22.1706745,
"longitude": 86.59109000000001,
"place": "NH49, Jharpokharia, Mayurbhanj, Odisha, India",
"time_recorded": "25-10-2022 12:43:13"
},
"106": {
"latitude": 22.212227499999997,
"longitude": 86.71615,
"place": "Gopiballavpur-I, Jhargram, West Bengal, India",
"time_recorded": "25-10-2022 13:18:29"
},
"107": {
"latitude": 22.282719999999998,
"longitude": 86.7444975,
"place": "Baharagora, Purbi Singhbhum, Jharkhand, 832101, India",
"time_recorded": "25-10-2022 14:21:28"
},
"108": {
"latitude": 22.30341,
"longitude": 86.791245,
"place": "Baharagora, Purbi Singhbhum, Jharkhand, India",
"time_recorded": "25-10-2022 18:10:17"
},
"109": {
"latitude": 22.31022,
"longitude": 86.88494,
"place": "Baharagora, Purbi Singhbhum, Jharkhand, 721517, India",
"time_recorded": "25-10-2022 18:27:53"
},
"110": {
"latitude": 22.321827,
"longitude": 86.9378625,
"place": "Āgaibani, Jhargram, West Bengal, India",
"time_recorded": "25-10-2022 22:09:41"
},
"111": {
"latitude": 22.34265,
"longitude": 87.12292,
"place": "Jhargram, West Bengal, 721513, India",
"time_recorded": "25-10-2022 22:47:51"
},
"112": {
"latitude": 22.33318,
"longitude": 87.22081,
"place": "Kalaikunda, Kharagpur, Kharagpur-I, Paschim Medinipur, West Bengal, 721301, India",
"time_recorded": "26-10-2022 00:17:57"
},
"113": {
"latitude": 22.375104999999998,
"longitude": 87.357695,
"place": "NH49, Rupnarayanpur, Kharagpur-I, Paschim Medinipur, West Bengal, 721305, India",
"time_recorded": "26-10-2022 00:49:54"
},
"114": {
"latitude": 22.3945,
"longitude": 87.51202,
"place": "NH16, Balarampur, Kharagpur-II, Paschim Medinipur, West Bengal, 721126, India",
"time_recorded": "26-10-2022 01:34:52"
},
"115": {
"latitude": 22.40972,
"longitude": 87.66821,
"place": "Panskura, Purba Medinipur, West Bengal, 721136, India",
"time_recorded": "26-10-2022 01:54:09"
},
"116": {
"latitude": 22.417437,
"longitude": 87.76913,
"place": "NH16, Kolaghat, Purba Medinipur, West Bengal, 721134, India",
"time_recorded": "26-10-2022 02:14:02"
},
"117": {
"latitude": 22.488983,
"longitude": 88.11166,
"place": "NH16, Uluberiya, Uluberia - I, Howrah, West Bengal, 711315, India",
"time_recorded": "26-10-2022 03:08:26"
},
"118": {
"latitude": 22.570557,
"longitude": 88.190186,
"place": "NH16, Sankrail, Howrah, West Bengal, 711322, India",
"time_recorded": "26-10-2022 03:35:48"
},
"119": {
"latitude": 22.479248,
"longitude": 88.09363,
"place": "NH16, Birshibpur, Uluberiya, Uluberia - I, Howrah, West Bengal, 711315, India",
"time_recorded": "26-10-2022 12:44:46"
},
"120": {
"latitude": 22.461264,
"longitude": 87.945526,
"place": "Bagnan - I, Howrah, West Bengal, 711303, India",
"time_recorded": "26-10-2022 13:01:36"
},
"121": {
"latitude": 22.461264,
"longitude": 87.945526,
"place": "Bagnan - I, Howrah, West Bengal, 711303, India",
"time_recorded": "26-10-2022 13:01:36"
}
}
}
***Status Code:*** 200
## Simple Phone Number Tracking APIs ### 1. Check concent
This endpoint is responsible for refreshing the tracking concent of provided number, i.e. whether location tracking is allowed or not yet
Body Parameters
Parameter | Mandatory | Description |
---|---|---|
tel | Yes | 10 digit previously added mobile number |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Wrong or not added mobile number passed
{
"status": "invalid_mobile"
}
Endpoint:
Method: GET
Type: RAW
URL: https://dashboard.traqo.in/api/v2/check_consent/
Body:
{
"tel":"79056XXXXXX"
}
More example Requests/Responses:
I. Example Request: Check concent
Body:
{
"tel":"79056XXXXXX"
}
I. Example Response: Check concent
{
"consent": "PENDING",
"tel": "79056XXXXX",
"operator": "Jio"
}
Status Code: 200
2. Resend Consent Sms
Through this endpoint location tracking concent SMS can be resent to particular number.
Note-
It is allowed Max 5 times per number
Body Parameters
Parameter | Mandatory | Description |
---|---|---|
phone_number | Yes | 10 digit previously added mobile number |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
SMS Already sent max 5 times through this API
{
"status": "max_exceeds"
}
Endpoint:
Method: POST
Type: RAW
URL: https://dashboard.traqo.in/api/v2/resend_consent_sms/
Body:
{
"phone_number": "7905XXXXX"
}
More example Requests/Responses:
I. Example Request: Resend Consent Sms
Body:
{
"phone_number": "7905XXXXX"
}
I. Example Response: Resend Consent Sms
{
"status": "success"
}
Status Code: 200
3. Number List
All of last updated locations of provided concents phone numbers can be fetched through this endpoint,
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Endpoint:
Method: GET
Type:
URL: https://dashboard.traqo.in/api/v2/number_list/
More example Requests/Responses:
I. Example Request: Number List
Body: None
I. Example Response: Number List
{
"0": {
"phone_number": 7607XXXXXX,
"latitude": 22.44972,
"longitude": 80.70639,
"location": "in Bichhiya, Mandla, Madhya Pradesh",
"update_at": "01-Feb 21:59",
"status": "ALLOWED",
"operator": "airtel",
"last_24h": "285",
"name": "Vinod Singh",
"gender": "M",
"total_distance": 3376,
"total_requests": 914,
"avg_speed": 0.1582
},
"1": {
"phone_number": 7879XXXXXX,
"latitude": 25.42252416666667,
"longitude": 80.10076055555555,
"location": "NH35, Rewai Sunecha, Uttar Pradesh 210424, India",
"update_at": "01-Feb 22:07",
"status": "ALLOWED",
"operator": "Jio",
"last_24h": "57",
"name": "naval kishor",
"gender": "M",
"total_distance": 2273,
"total_requests": 929,
"avg_speed": 0.1201
},
"2": {
"phone_number": 8887XXXXXX,
"latitude": 24.071592222222222,
"longitude": 79.39441694444444,
"location": "Unnamed Road, Madhya Pradesh 470673, India",
"update_at": "01-Feb 22:07",
"status": "ALLOWED",
"operator": "Jio",
"last_24h": "140",
"name": "kuldeep singh",
"gender": "M",
"total_distance": 3783,
"total_requests": 1575,
"avg_speed": 0.1199
},
"3": {
"phone_number": 9140XXXXXX,
"latitude": 25.422620833333333,
"longitude": 80.10091055555554,
"location": "NH35, Rewai Sunecha, Uttar Pradesh 210424, India",
"update_at": "01-Feb 21:58",
"status": "ALLOWED",
"operator": "Jio",
"last_24h": "46",
"name": "SHER SINGH",
"gender": "M",
"total_distance": 5076,
"total_requests": 2167,
"avg_speed": 0.1106
}
}
Status Code: 200
4. Delete_number
Provided number can be removed from tracking system through this API.
Body Parameters
Parameter | Mandatory | Description |
---|---|---|
phone_number | Yes | 10 digit previously added mobile number |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Wrong or not added mobile number passed
{
"status": "invalid_mobile"
}
Endpoint:
Method: POST
Type: RAW
URL: https://dashboard.traqo.in/api/v2/delete_number/
Body:
{
"phone_number":"7905XXXXXXX"
}
More example Requests/Responses:
I. Example Request: delete_number
Body:
{
"phone_number":"7905XXXXXXX"
}
I. Example Response: delete_number
{
"status": "success"
}
Status Code: 200
5. Route History
Through this endpoint route history can be fetched of provided number..
Body Parameters
Parameter | Mandatory | Description |
---|---|---|
phone_number | Yes | 10 digit previously added mobile number |
from_date | Yes | From date for Route history in YYYY/MM/DD formate |
to_date | Yes | To date for Route history in YYYY/MM/DD formate |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Endpoint:
Method: GET
Type: RAW
URL: https://dashboard.traqo.in/api/v2/route_history/
Body:
{
"phone_number": "7380XXXXXX",
"from_date": "2020-11-30",
"to_date": "2021-01-31"
}
More example Requests/Responses:
I. Example Request: Route history
Body: None
I. Example Response: Route history
{
"0": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "14:06:22 07-12-2020"
},
"1": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "14:06:22 07-12-2020"
},
"2": {
"phone_number": 7380XXXXXX,
"latitude": 28.640324,
"longitude": 77.37459,
"location": "Near Vista Plaza, Ahinsa Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "14:36:20 07-12-2020"
},
"3": {
"phone_number": 7380XXXXXX,
"latitude": 28.640324,
"longitude": 77.37459,
"location": "Near Vista Plaza, Ahinsa Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "14:36:20 07-12-2020"
},
"4": {
"phone_number": 7380XXXXXX,
"latitude": 28.646666,
"longitude": 77.36828,
"location": "Near Param Jyoti Multi-Specialty Clinics, Shakti Khand 2, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "14:51:33 07-12-2020"
},
"5": {
"phone_number": 7380XXXXXX,
"latitude": 28.644394,
"longitude": 77.36696,
"location": "in Niti Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "15:06:25 07-12-2020"
},
"6": {
"phone_number": 7380XXXXXX,
"latitude": 28.644394,
"longitude": 77.36696,
"location": "in Niti Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "15:06:25 07-12-2020"
},
"7": {
"phone_number": 7380XXXXXX,
"latitude": 28.646666,
"longitude": 77.36828,
"location": "Near Param Jyoti Multi-Specialty Clinics, Shakti Khand 2, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "15:21:19 07-12-2020"
},
"8": {
"phone_number": 7380XXXXXX,
"latitude": 28.644394,
"longitude": 77.36696,
"location": "in Niti Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "15:36:26 07-12-2020"
},
"9": {
"phone_number": 7380XXXXXX,
"latitude": 28.644394,
"longitude": 77.36696,
"location": "in Niti Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "15:36:26 07-12-2020"
},
"10": {
"phone_number": 7380XXXXXX,
"latitude": 28.646666,
"longitude": 77.36828,
"location": "Near Param Jyoti Multi-Specialty Clinics, Shakti Khand 2, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "15:51:16 07-12-2020"
},
"11": {
"phone_number": 7380XXXXXX,
"latitude": 28.646666,
"longitude": 77.36828,
"location": "Near Param Jyoti Multi-Specialty Clinics, Shakti Khand 2, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "16:06:25 07-12-2020"
},
"12": {
"phone_number": 7380XXXXXX,
"latitude": 28.646666,
"longitude": 77.36828,
"location": "Near Param Jyoti Multi-Specialty Clinics, Shakti Khand 2, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "16:06:25 07-12-2020"
},
"13": {
"phone_number": 7380XXXXXX,
"latitude": 28.646614,
"longitude": 77.36719,
"location": "Near Param Jyoti Multi-Specialty Clinics, Shakti Khand 2, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "16:21:19 07-12-2020"
},
"14": {
"phone_number": 7380XXXXXX,
"latitude": 28.63482,
"longitude": 77.35642,
"location": "in Kala Patthar, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "16:36:48 07-12-2020"
},
"15": {
"phone_number": 7380XXXXXX,
"latitude": 28.63482,
"longitude": 77.35642,
"location": "in Kala Patthar, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "16:36:48 07-12-2020"
},
"16": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "17:06:10 07-12-2020"
},
"17": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "17:06:10 07-12-2020"
},
"18": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "17:21:22 07-12-2020"
},
"19": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "17:36:11 07-12-2020"
},
"20": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "17:36:11 07-12-2020"
},
"21": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "17:51:17 07-12-2020"
},
"22": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:06:21 07-12-2020"
},
"23": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:06:21 07-12-2020"
},
"24": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:21:16 07-12-2020"
},
"25": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:36:27 07-12-2020"
},
"26": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:36:27 07-12-2020"
},
"27": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:51:37 07-12-2020"
},
"28": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:06:13 07-12-2020"
},
"29": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:06:13 07-12-2020"
},
"30": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:21:43 07-12-2020"
},
"31": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:36:20 07-12-2020"
},
"32": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:36:20 07-12-2020"
},
"33": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:51:15 07-12-2020"
},
"34": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:06:20 07-12-2020"
},
"35": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:06:20 07-12-2020"
},
"36": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:21:16 07-12-2020"
},
"37": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:36:18 07-12-2020"
},
"38": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:36:18 07-12-2020"
},
"39": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:51:51 07-12-2020"
},
"40": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:06:20 07-12-2020"
},
"41": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:06:20 07-12-2020"
},
"42": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:21:59 07-12-2020"
},
"43": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:37:06 07-12-2020"
},
"44": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:37:06 07-12-2020"
},
"45": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:51:35 07-12-2020"
},
"46": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:06:09 07-12-2020"
},
"47": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:06:09 07-12-2020"
},
"48": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:21:20 07-12-2020"
},
"49": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:36:20 07-12-2020"
},
"50": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:36:20 07-12-2020"
},
"51": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:52:44 07-12-2020"
},
"52": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:06:16 07-12-2020"
},
"53": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:06:16 07-12-2020"
},
"54": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:22:20 07-12-2020"
},
"55": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:36:42 07-12-2020"
},
"56": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:36:42 07-12-2020"
},
"57": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:51:20 07-12-2020"
},
"58": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:06:46 08-12-2020"
},
"59": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:06:46 08-12-2020"
},
"60": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:22:07 08-12-2020"
},
"61": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:36:37 08-12-2020"
},
"62": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:36:37 08-12-2020"
},
"63": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:51:40 08-12-2020"
},
"64": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:06:43 08-12-2020"
},
"65": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:06:43 08-12-2020"
},
"66": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:22:11 08-12-2020"
},
"67": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:36:29 08-12-2020"
},
"68": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:36:29 08-12-2020"
},
"69": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:51:20 08-12-2020"
},
"70": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:06:17 08-12-2020"
},
"71": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:06:17 08-12-2020"
},
"72": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:21:38 08-12-2020"
},
"73": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:37:01 08-12-2020"
},
"74": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:37:01 08-12-2020"
},
"75": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:51:28 08-12-2020"
},
"76": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:06:26 08-12-2020"
},
"77": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:06:26 08-12-2020"
},
"78": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:21:32 08-12-2020"
},
"79": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:36:45 08-12-2020"
},
"80": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:36:45 08-12-2020"
},
"81": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:51:26 08-12-2020"
},
"82": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:06:23 08-12-2020"
},
"83": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:06:23 08-12-2020"
},
"84": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:21:38 08-12-2020"
},
"85": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:36:26 08-12-2020"
},
"86": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:36:26 08-12-2020"
},
"87": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:51:23 08-12-2020"
},
"88": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:06:20 08-12-2020"
},
"89": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:06:20 08-12-2020"
},
"90": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:21:48 08-12-2020"
},
"91": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:36:22 08-12-2020"
},
"92": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:36:22 08-12-2020"
},
"93": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:51:20 08-12-2020"
},
"94": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:06:18 08-12-2020"
},
"95": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:06:18 08-12-2020"
},
"96": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:21:17 08-12-2020"
},
"97": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:36:43 08-12-2020"
},
"98": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:36:43 08-12-2020"
},
"99": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:51:27 08-12-2020"
},
"100": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:06:22 08-12-2020"
},
"101": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:06:22 08-12-2020"
},
"102": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:22:01 08-12-2020"
},
"103": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:36:53 08-12-2020"
},
"104": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:36:53 08-12-2020"
},
"105": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:51:22 08-12-2020"
},
"106": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:06:30 08-12-2020"
},
"107": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:06:30 08-12-2020"
},
"108": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:21:50 08-12-2020"
},
"109": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:36:57 08-12-2020"
},
"110": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:36:57 08-12-2020"
},
"111": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:51:33 08-12-2020"
},
"112": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:06:33 08-12-2020"
},
"113": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:06:33 08-12-2020"
},
"114": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:21:23 08-12-2020"
},
"115": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:36:16 08-12-2020"
},
"116": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:36:16 08-12-2020"
},
"117": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:51:36 08-12-2020"
},
"118": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:06:22 08-12-2020"
},
"119": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:06:22 08-12-2020"
},
"120": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:21:18 08-12-2020"
},
"121": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:36:32 08-12-2020"
},
"122": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:36:32 08-12-2020"
},
"123": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:51:18 08-12-2020"
},
"124": {
"phone_number": 7380XXXXXX,
"latitude": 28.622107,
"longitude": 77.37852,
"location": "Near Mawai Infotech Limited, Block A, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "11:06:16 08-12-2020"
},
"125": {
"phone_number": 7380XXXXXX,
"latitude": 28.622107,
"longitude": 77.37852,
"location": "Near Mawai Infotech Limited, Block A, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "11:06:16 08-12-2020"
},
"126": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "11:21:56 08-12-2020"
},
"127": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "11:36:35 08-12-2020"
},
"128": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "11:36:35 08-12-2020"
},
"129": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "11:51:17 08-12-2020"
},
"130": {
"phone_number": 7380XXXXXX,
"latitude": 28.612349,
"longitude": 77.378006,
"location": "Near Jain Enterprise, Block A, Sector 64, Noida, Uttar Pradesh",
"time_recorded": "12:06:30 08-12-2020"
},
"131": {
"phone_number": 7380XXXXXX,
"latitude": 28.612349,
"longitude": 77.378006,
"location": "Near Jain Enterprise, Block A, Sector 64, Noida, Uttar Pradesh",
"time_recorded": "12:06:30 08-12-2020"
},
"132": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "12:21:43 08-12-2020"
},
"133": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "12:36:48 08-12-2020"
},
"134": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "12:36:48 08-12-2020"
},
"135": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "13:21:29 08-12-2020"
},
"136": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "13:36:41 08-12-2020"
},
"137": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "13:36:41 08-12-2020"
},
"138": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "13:51:31 08-12-2020"
},
"139": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "14:06:26 08-12-2020"
},
"140": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "14:06:26 08-12-2020"
},
"141": {
"phone_number": 7380XXXXXX,
"latitude": 28.606613,
"longitude": 77.37908,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "15:51:19 08-12-2020"
},
"142": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "16:06:20 08-12-2020"
},
"143": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "16:06:20 08-12-2020"
},
"144": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "16:21:22 08-12-2020"
},
"145": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "16:36:44 08-12-2020"
},
"146": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "16:36:44 08-12-2020"
},
"147": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "16:51:42 08-12-2020"
},
"148": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:06:22 08-12-2020"
},
"149": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:06:22 08-12-2020"
},
"150": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:21:24 08-12-2020"
},
"151": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:36:42 08-12-2020"
},
"152": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:36:42 08-12-2020"
},
"153": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:51:25 08-12-2020"
},
"154": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "18:06:20 08-12-2020"
},
"155": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "18:06:20 08-12-2020"
},
"156": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "18:21:49 08-12-2020"
},
"157": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "18:36:48 08-12-2020"
},
"158": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "18:36:48 08-12-2020"
},
"159": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "18:51:40 08-12-2020"
},
"160": {
"phone_number": 7380XXXXXX,
"latitude": 28.615732,
"longitude": 77.38404,
"location": "Near Vishvash Computech, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "19:06:24 08-12-2020"
},
"161": {
"phone_number": 7380XXXXXX,
"latitude": 28.615732,
"longitude": 77.38404,
"location": "Near Vishvash Computech, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "19:06:24 08-12-2020"
},
"162": {
"phone_number": 7380XXXXXX,
"latitude": 28.639591,
"longitude": 77.37579,
"location": "Near Women Care Clinic, Ahinsa Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:21:26 08-12-2020"
},
"163": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:36:32 08-12-2020"
},
"164": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:36:32 08-12-2020"
},
"165": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:51:19 08-12-2020"
},
"166": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:06:11 08-12-2020"
},
"167": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:06:11 08-12-2020"
},
"168": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:21:16 08-12-2020"
},
"169": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:36:12 08-12-2020"
},
"170": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:36:12 08-12-2020"
},
"171": {
"phone_number": 7380XXXXXX,
"latitude": 28.622042,
"longitude": 77.32819,
"location": "in Ghazipur Dairy Farm, Ghazipur, New Delhi",
"time_recorded": "21:52:16 08-12-2020"
},
"172": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:06:17 08-12-2020"
},
"173": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:06:17 08-12-2020"
},
"174": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:21:35 08-12-2020"
},
"175": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:36:14 08-12-2020"
},
"176": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:36:14 08-12-2020"
},
"177": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:51:29 08-12-2020"
},
"178": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:06:16 09-12-2020"
},
"179": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:06:16 09-12-2020"
},
"180": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:21:23 09-12-2020"
},
"181": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:36:19 09-12-2020"
},
"182": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:36:19 09-12-2020"
},
"183": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:52:24 09-12-2020"
},
"184": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:06:14 09-12-2020"
},
"185": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:06:14 09-12-2020"
},
"186": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:21:26 09-12-2020"
},
"187": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:36:22 09-12-2020"
},
"188": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:36:22 09-12-2020"
},
"189": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:51:50 09-12-2020"
},
"190": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:06:15 09-12-2020"
},
"191": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:06:15 09-12-2020"
},
"192": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:21:17 09-12-2020"
},
"193": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:36:13 09-12-2020"
},
"194": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:36:13 09-12-2020"
},
"195": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:52:26 09-12-2020"
},
"196": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:06:19 09-12-2020"
},
"197": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:06:19 09-12-2020"
},
"198": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:21:13 09-12-2020"
},
"199": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:36:24 09-12-2020"
},
"200": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:36:24 09-12-2020"
},
"201": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:51:42 09-12-2020"
},
"202": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:06:23 09-12-2020"
},
"203": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:06:23 09-12-2020"
},
"204": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:21:14 09-12-2020"
},
"205": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:36:17 09-12-2020"
},
"206": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:36:17 09-12-2020"
},
"207": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:52:27 09-12-2020"
},
"208": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:06:24 09-12-2020"
},
"209": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:06:24 09-12-2020"
},
"210": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:21:19 09-12-2020"
},
"211": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:36:13 09-12-2020"
},
"212": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:36:13 09-12-2020"
},
"213": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:52:04 09-12-2020"
},
"214": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:06:22 09-12-2020"
},
"215": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:06:22 09-12-2020"
},
"216": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:21:53 09-12-2020"
},
"217": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:36:11 09-12-2020"
},
"218": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:36:11 09-12-2020"
},
"219": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:51:55 09-12-2020"
},
"220": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:06:13 09-12-2020"
},
"221": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:06:13 09-12-2020"
},
"222": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:21:26 09-12-2020"
},
"223": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:36:12 09-12-2020"
},
"224": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:36:12 09-12-2020"
},
"225": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:51:30 09-12-2020"
},
"226": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:06:18 09-12-2020"
},
"227": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:06:18 09-12-2020"
},
"228": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:21:21 09-12-2020"
},
"229": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:36:46 09-12-2020"
},
"230": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:36:46 09-12-2020"
},
"231": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:51:38 09-12-2020"
},
"232": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:06:32 09-12-2020"
},
"233": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:06:32 09-12-2020"
},
"234": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:21:40 09-12-2020"
},
"235": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:36:49 09-12-2020"
},
"236": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:36:49 09-12-2020"
},
"237": {
"phone_number": 7380XXXXXX,
"latitude": 28.642267,
"longitude": 77.33672,
"location": "Near Dr Umesh Varma Gastroenterologist Liver Specialist Hepatologist Endoscopist, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:51:25 09-12-2020"
},
"238": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:06:44 09-12-2020"
},
"239": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:06:44 09-12-2020"
},
"240": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:21:43 09-12-2020"
},
"241": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:37:05 09-12-2020"
},
"242": {
"phone_number": 7380XXXXXX,
"latitude": 28.6428,
"longitude": 77.34564,
"location": "Near Kalpana Apartment, Sector 5, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:37:05 09-12-2020"
},
"243": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:51:20 09-12-2020"
},
"244": {
"phone_number": 7380XXXXXX,
"latitude": 28.640217,
"longitude": 77.372185,
"location": "Near Bharti Airtel Ltd, Ahinsa Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "11:06:36 09-12-2020"
},
"245": {
"phone_number": 7380XXXXXX,
"latitude": 28.640217,
"longitude": 77.372185,
"location": "Near Bharti Airtel Ltd, Ahinsa Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "11:06:36 09-12-2020"
},
"246": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "11:21:26 09-12-2020"
},
"247": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "11:36:25 09-12-2020"
},
"248": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "11:36:25 09-12-2020"
},
"249": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "11:51:35 09-12-2020"
},
"250": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "12:06:40 09-12-2020"
},
"251": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "12:06:40 09-12-2020"
},
"252": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "12:21:36 09-12-2020"
},
"253": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "12:36:59 09-12-2020"
},
"254": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "12:36:59 09-12-2020"
},
"255": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "12:51:28 09-12-2020"
},
"256": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "13:06:32 09-12-2020"
},
"257": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "13:06:32 09-12-2020"
},
"258": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "13:21:31 09-12-2020"
},
"259": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "13:36:32 09-12-2020"
},
"260": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "13:36:32 09-12-2020"
},
"261": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "13:51:45 09-12-2020"
},
"262": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "14:06:24 09-12-2020"
},
"263": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "14:06:24 09-12-2020"
},
"264": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "14:21:21 09-12-2020"
},
"265": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "14:37:12 09-12-2020"
},
"266": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "14:37:12 09-12-2020"
},
"267": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "15:21:32 09-12-2020"
},
"268": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "15:36:22 09-12-2020"
},
"269": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "15:36:22 09-12-2020"
},
"270": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "16:36:17 09-12-2020"
},
"271": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "16:36:17 09-12-2020"
},
"272": {
"phone_number": 7380XXXXXX,
"latitude": 28.598698,
"longitude": 77.390465,
"location": "in Sector 121, Noida, Uttar Pradesh",
"time_recorded": "16:51:20 09-12-2020"
},
"273": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:06:37 09-12-2020"
},
"274": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:06:37 09-12-2020"
},
"275": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:21:31 09-12-2020"
},
"276": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:36:18 09-12-2020"
},
"277": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:36:18 09-12-2020"
},
"278": {
"phone_number": 7380XXXXXX,
"latitude": 28.61488,
"longitude": 77.38682,
"location": "Near Nokia Care, Block C, Sector 63, Noida, Uttar Pradesh",
"time_recorded": "17:51:52 09-12-2020"
},
"279": {
"phone_number": 7380XXXXXX,
"latitude": 28.637836,
"longitude": 77.34347,
"location": "Near Reshma Apartment, Block E, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:03:08 21-01-2021"
},
"280": {
"phone_number": 7380XXXXXX,
"latitude": 28.637836,
"longitude": 77.34347,
"location": "Near Reshma Apartment, Block E, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:03:08 21-01-2021"
},
"281": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "15:32:51 22-01-2021"
},
"282": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "16:02:43 22-01-2021"
},
"283": {
"phone_number": 7380XXXXXX,
"latitude": 28.606276,
"longitude": 77.37978,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "16:18:06 22-01-2021"
},
"284": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "16:32:13 22-01-2021"
},
"285": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "17:02:23 22-01-2021"
},
"286": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "17:17:23 22-01-2021"
},
"287": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "17:32:11 22-01-2021"
},
"288": {
"phone_number": 7380XXXXXX,
"latitude": 28.612215,
"longitude": 77.37088,
"location": "Near Flex Apartment, Phase 2, Industrial Area, Sector 62, Noida, Uttar Pradesh",
"time_recorded": "18:02:16 22-01-2021"
},
"289": {
"phone_number": 7380XXXXXX,
"latitude": 28.64211,
"longitude": 77.36818,
"location": "in Niti Khand 1, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:17:16 22-01-2021"
},
"290": {
"phone_number": 7380XXXXXX,
"latitude": 28.635845,
"longitude": 77.34074,
"location": "in Block E, Kamma 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:33:30 22-01-2021"
},
"291": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:02:23 22-01-2021"
},
"292": {
"phone_number": 7380XXXXXX,
"latitude": 28.637163,
"longitude": 77.34317,
"location": "Near Santt Vihar Apartment, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:17:50 22-01-2021"
},
"293": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:32:27 22-01-2021"
},
"294": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:02:50 22-01-2021"
},
"295": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:17:30 22-01-2021"
},
"296": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:32:33 22-01-2021"
},
"297": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:02:40 22-01-2021"
},
"298": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:17:50 22-01-2021"
},
"299": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:32:46 22-01-2021"
},
"300": {
"phone_number": 7380XXXXXX,
"latitude": 28.637247,
"longitude": 77.34321,
"location": "Near Santt Vihar Apartment, Block E, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:02:13 22-01-2021"
},
"301": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:17:21 22-01-2021"
},
"302": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:32:50 22-01-2021"
},
"303": {
"phone_number": 7380XXXXXX,
"latitude": 28.636574,
"longitude": 77.34291,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:02:21 22-01-2021"
},
"304": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:17:27 22-01-2021"
},
"305": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:32:11 22-01-2021"
},
"306": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:02:13 23-01-2021"
},
"307": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:17:16 23-01-2021"
},
"308": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:32:33 23-01-2021"
},
"309": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:02:13 23-01-2021"
},
"310": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:17:21 23-01-2021"
},
"311": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:32:27 23-01-2021"
},
"312": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:02:22 23-01-2021"
},
"313": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:17:12 23-01-2021"
},
"314": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:32:19 23-01-2021"
},
"315": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:02:12 23-01-2021"
},
"316": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:17:15 23-01-2021"
},
"317": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:47:11 23-01-2021"
},
"318": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:02:19 23-01-2021"
},
"319": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:17:12 23-01-2021"
},
"320": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:47:11 23-01-2021"
},
"321": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:02:16 23-01-2021"
},
"322": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:17:11 23-01-2021"
},
"323": {
"phone_number": 7380XXXXXX,
"latitude": 28.64166,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:47:10 23-01-2021"
},
"324": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:02:13 23-01-2021"
},
"325": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:17:25 23-01-2021"
},
"326": {
"phone_number": 7380XXXXXX,
"latitude": 28.64094,
"longitude": 77.33928,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:47:36 23-01-2021"
},
"327": {
"phone_number": 7380XXXXXX,
"latitude": 28.64058,
"longitude": 77.33927,
"location": "Near HDFC Bank ATM, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:02:13 23-01-2021"
},
"328": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:17:31 23-01-2021"
},
"329": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:47:58 23-01-2021"
},
"330": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:02:38 23-01-2021"
},
"331": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:17:15 23-01-2021"
},
"332": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:47:15 23-01-2021"
},
"333": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:02:48 23-01-2021"
},
"334": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:17:39 23-01-2021"
},
"335": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:47:16 23-01-2021"
},
"336": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:03:14 23-01-2021"
},
"337": {
"phone_number": 7380XXXXXX,
"latitude": 28.64166,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:17:24 23-01-2021"
},
"338": {
"phone_number": 7380XXXXXX,
"latitude": 28.63474,
"longitude": 77.34146,
"location": "Near Gaur Green, Shanti Vihar, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:47:18 23-01-2021"
},
"339": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "11:02:17 23-01-2021"
},
"340": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "11:17:35 23-01-2021"
},
"341": {
"phone_number": 7380XXXXXX,
"latitude": 28.611456,
"longitude": 77.38079,
"location": "Near Multicio Electronics, Block A, Sector 65, Noida, Uttar Pradesh",
"time_recorded": "11:47:28 23-01-2021"
},
"342": {
"phone_number": 7380XXXXXX,
"latitude": 28.606401,
"longitude": 77.3807,
"location": "in Block B, Sector 67, Noida, Uttar Pradesh",
"time_recorded": "12:02:18 23-01-2021"
},
"343": {
"phone_number": 7380XXXXXX,
"latitude": 28.606401,
"longitude": 77.3807,
"location": "in Block B, Sector 67, Noida, Uttar Pradesh",
"time_recorded": "12:17:23 23-01-2021"
},
"344": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "12:47:26 23-01-2021"
},
"345": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "13:03:08 23-01-2021"
},
"346": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "13:17:48 23-01-2021"
},
"347": {
"phone_number": 7380XXXXXX,
"latitude": 28.606262,
"longitude": 77.379684,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "13:47:26 23-01-2021"
},
"348": {
"phone_number": 7380XXXXXX,
"latitude": 28.606276,
"longitude": 77.37978,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "14:02:36 23-01-2021"
},
"349": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "14:17:20 23-01-2021"
},
"350": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "14:47:23 23-01-2021"
},
"351": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "15:02:59 23-01-2021"
},
"352": {
"phone_number": 7380XXXXXX,
"latitude": 28.606401,
"longitude": 77.3807,
"location": "in Block B, Sector 67, Noida, Uttar Pradesh",
"time_recorded": "15:17:20 23-01-2021"
},
"353": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "15:47:34 23-01-2021"
},
"354": {
"phone_number": 7380XXXXXX,
"latitude": 28.606276,
"longitude": 77.37978,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "16:03:26 23-01-2021"
},
"355": {
"phone_number": 7380XXXXXX,
"latitude": 28.606276,
"longitude": 77.37978,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "16:17:24 23-01-2021"
},
"356": {
"phone_number": 7380XXXXXX,
"latitude": 28.606401,
"longitude": 77.3807,
"location": "in Block B, Sector 67, Noida, Uttar Pradesh",
"time_recorded": "16:47:17 23-01-2021"
},
"357": {
"phone_number": 7380XXXXXX,
"latitude": 28.606401,
"longitude": 77.3807,
"location": "in Block B, Sector 67, Noida, Uttar Pradesh",
"time_recorded": "17:02:25 23-01-2021"
},
"358": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "17:17:34 23-01-2021"
},
"359": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "17:47:24 23-01-2021"
},
"360": {
"phone_number": 7380XXXXXX,
"latitude": 28.606401,
"longitude": 77.3807,
"location": "in Block B, Sector 67, Noida, Uttar Pradesh",
"time_recorded": "18:02:32 23-01-2021"
},
"361": {
"phone_number": 7380XXXXXX,
"latitude": 28.606386,
"longitude": 77.38059,
"location": "in Block B, Sector 67, Noida, Uttar Pradesh",
"time_recorded": "18:17:13 23-01-2021"
},
"362": {
"phone_number": 7380XXXXXX,
"latitude": 28.606276,
"longitude": 77.37978,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "18:47:19 23-01-2021"
},
"363": {
"phone_number": 7380XXXXXX,
"latitude": 28.605946,
"longitude": 77.38048,
"location": "in Block B, Sector 67, Noida, Uttar Pradesh",
"time_recorded": "19:02:40 23-01-2021"
},
"364": {
"phone_number": 7380XXXXXX,
"latitude": 28.63368,
"longitude": 77.35198,
"location": "Near Supertech Icon Tower, Nyay Khand 1, Indira Puram, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:17:36 23-01-2021"
},
"365": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:47:50 23-01-2021"
},
"366": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:02:35 23-01-2021"
},
"367": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:17:24 23-01-2021"
},
"368": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:47:17 23-01-2021"
},
"369": {
"phone_number": 7380XXXXXX,
"latitude": 28.63722,
"longitude": 77.33988,
"location": "Near Ashco Industries Limited, Block E, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:18:33 23-01-2021"
},
"370": {
"phone_number": 7380XXXXXX,
"latitude": 28.642427,
"longitude": 77.33932,
"location": "Near Devika Apartment, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:34:14 23-01-2021"
},
"371": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:04:19 23-01-2021"
},
"372": {
"phone_number": 7380XXXXXX,
"latitude": 28.635502,
"longitude": 77.35554,
"location": "in Nyay Khand 1, Indira Puram, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:18:35 23-01-2021"
},
"373": {
"phone_number": 7380XXXXXX,
"latitude": 28.635561,
"longitude": 77.35546,
"location": "in Nyay Khand 1, Indira Puram, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:33:21 23-01-2021"
},
"374": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:03:12 23-01-2021"
},
"375": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:19:35 23-01-2021"
},
"376": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:48:09 23-01-2021"
},
"377": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:03:04 24-01-2021"
},
"378": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:17:32 24-01-2021"
},
"379": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:47:16 24-01-2021"
},
"380": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:02:41 24-01-2021"
},
"381": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:17:19 24-01-2021"
},
"382": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:47:11 24-01-2021"
},
"383": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:02:28 24-01-2021"
},
"384": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:17:12 24-01-2021"
},
"385": {
"phone_number": 7380XXXXXX,
"latitude": 28.636574,
"longitude": 77.34291,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:47:26 24-01-2021"
},
"386": {
"phone_number": 7380XXXXXX,
"latitude": 28.637362,
"longitude": 77.33979,
"location": "Near Ashco Industries Limited, Block E, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:02:33 24-01-2021"
},
"387": {
"phone_number": 7380XXXXXX,
"latitude": 28.636421,
"longitude": 77.34038,
"location": "Near Ashco Industries Limited, Block E, Kamma 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:17:26 24-01-2021"
},
"388": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:47:25 24-01-2021"
},
"389": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:02:26 24-01-2021"
},
"390": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:17:11 24-01-2021"
},
"391": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:47:27 24-01-2021"
},
"392": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:02:22 24-01-2021"
},
"393": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:17:27 24-01-2021"
},
"394": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:47:19 24-01-2021"
},
"395": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:02:23 24-01-2021"
},
"396": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:17:43 24-01-2021"
},
"397": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:47:23 24-01-2021"
},
"398": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:02:22 24-01-2021"
},
"399": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:17:27 24-01-2021"
},
"400": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:47:15 24-01-2021"
},
"401": {
"phone_number": 7380XXXXXX,
"latitude": 28.641888,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:02:25 24-01-2021"
},
"402": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:17:29 24-01-2021"
},
"403": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:47:22 24-01-2021"
},
"404": {
"phone_number": 7380XXXXXX,
"latitude": 28.64112,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:02:23 24-01-2021"
},
"405": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:17:22 24-01-2021"
},
"406": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:47:24 24-01-2021"
},
"407": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:02:29 24-01-2021"
},
"408": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:17:40 24-01-2021"
},
"409": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:47:26 24-01-2021"
},
"410": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "11:02:20 24-01-2021"
},
"411": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "11:17:16 24-01-2021"
},
"412": {
"phone_number": 7380XXXXXX,
"latitude": 28.636574,
"longitude": 77.34291,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "11:47:43 24-01-2021"
},
"413": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "12:02:49 24-01-2021"
},
"414": {
"phone_number": 7380XXXXXX,
"latitude": 28.636574,
"longitude": 77.34291,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "12:17:11 24-01-2021"
},
"415": {
"phone_number": 7380XXXXXX,
"latitude": 28.637884,
"longitude": 77.337524,
"location": "Near Sai Dental Clinic, Block B, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "12:47:15 24-01-2021"
},
"416": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "13:02:14 24-01-2021"
},
"417": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "13:17:10 24-01-2021"
},
"418": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "13:47:10 24-01-2021"
},
"419": {
"phone_number": 7380XXXXXX,
"latitude": 28.638758,
"longitude": 77.340256,
"location": "Near Krishna Sweets, Block C, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "14:02:11 24-01-2021"
},
"420": {
"phone_number": 7380XXXXXX,
"latitude": 28.645147,
"longitude": 77.3401,
"location": "Near CORPORATION BANK, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "14:17:10 24-01-2021"
},
"421": {
"phone_number": 7380XXXXXX,
"latitude": 28.642065,
"longitude": 77.340904,
"location": "Near Shopprix Mall, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "14:47:19 24-01-2021"
},
"422": {
"phone_number": 7380XXXXXX,
"latitude": 28.637686,
"longitude": 77.339584,
"location": "Near Ashco Industries Limited, Block C, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "15:02:15 24-01-2021"
},
"423": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "15:17:17 24-01-2021"
},
"424": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "15:47:20 24-01-2021"
},
"425": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "16:02:18 24-01-2021"
},
"426": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "16:17:27 24-01-2021"
},
"427": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "16:47:21 24-01-2021"
},
"428": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "17:02:26 24-01-2021"
},
"429": {
"phone_number": 7380XXXXXX,
"latitude": 28.637362,
"longitude": 77.33979,
"location": "Near Ashco Industries Limited, Block E, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "17:17:17 24-01-2021"
},
"430": {
"phone_number": 7380XXXXXX,
"latitude": 28.641888,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "17:47:16 24-01-2021"
},
"431": {
"phone_number": 7380XXXXXX,
"latitude": 28.636974,
"longitude": 77.340034,
"location": "Near Ashco Industries Limited, Block E, Kamma 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:02:24 24-01-2021"
},
"432": {
"phone_number": 7380XXXXXX,
"latitude": 28.637163,
"longitude": 77.34317,
"location": "Near Santt Vihar Apartment, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:17:14 24-01-2021"
},
"433": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "18:47:28 24-01-2021"
},
"434": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:02:09 24-01-2021"
},
"435": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:17:22 24-01-2021"
},
"436": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:47:09 24-01-2021"
},
"437": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:02:17 24-01-2021"
},
"438": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:17:13 24-01-2021"
},
"439": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:47:09 24-01-2021"
},
"440": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:02:18 24-01-2021"
},
"441": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:18:26 24-01-2021"
},
"442": {
"phone_number": 7380XXXXXX,
"latitude": 28.63649,
"longitude": 77.34287,
"location": "Near Aknns Eventas, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:47:42 24-01-2021"
},
"443": {
"phone_number": 7380XXXXXX,
"latitude": 28.64112,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:02:38 24-01-2021"
},
"444": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:17:49 24-01-2021"
},
"445": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:47:33 24-01-2021"
},
"446": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:02:21 24-01-2021"
},
"447": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:17:44 24-01-2021"
},
"448": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:47:25 24-01-2021"
},
"449": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:02:18 25-01-2021"
},
"450": {
"phone_number": 7380XXXXXX,
"latitude": 28.606276,
"longitude": 77.37978,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "16:41:22 27-01-2021"
},
"451": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "16:54:28 27-01-2021"
},
"452": {
"phone_number": 7380XXXXXX,
"latitude": 28.606186,
"longitude": 77.37913,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "17:24:29 27-01-2021"
},
"453": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "17:39:58 27-01-2021"
},
"454": {
"phone_number": 7380XXXXXX,
"latitude": 28.606276,
"longitude": 77.37978,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "17:54:18 27-01-2021"
},
"455": {
"phone_number": 7380XXXXXX,
"latitude": 28.606276,
"longitude": 77.37978,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "18:24:17 27-01-2021"
},
"456": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "18:40:39 27-01-2021"
},
"457": {
"phone_number": 7380XXXXXX,
"latitude": 28.6296,
"longitude": 77.3625,
"location": "Near Mphasis, Industrial Area, Sector 62, Noida, Uttar Pradesh",
"time_recorded": "19:24:55 27-01-2021"
},
"458": {
"phone_number": 7380XXXXXX,
"latitude": 28.630299,
"longitude": 77.36394,
"location": "in Industrial Area, Sector 62, Noida, Uttar Pradesh",
"time_recorded": "19:39:57 27-01-2021"
},
"459": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "19:54:17 27-01-2021"
},
"460": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:24:35 27-01-2021"
},
"461": {
"phone_number": 7380XXXXXX,
"latitude": 28.637362,
"longitude": 77.33979,
"location": "Near Ashco Industries Limited, Block E, Sector 2, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:39:22 27-01-2021"
},
"462": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "20:54:19 27-01-2021"
},
"463": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:24:18 27-01-2021"
},
"464": {
"phone_number": 7380XXXXXX,
"latitude": 28.647072,
"longitude": 77.33942,
"location": "Near State Bank Of India, Sector 4, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:39:28 27-01-2021"
},
"465": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "21:54:18 27-01-2021"
},
"466": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:24:20 27-01-2021"
},
"467": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:39:28 27-01-2021"
},
"468": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "22:54:19 27-01-2021"
},
"469": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:24:18 27-01-2021"
},
"470": {
"phone_number": 7380XXXXXX,
"latitude": 28.631496,
"longitude": 77.34862,
"location": "Near Delhi Meat Shop, Makanpur Colony, Sector 62 A, Noida, Uttar Pradesh",
"time_recorded": "23:39:23 27-01-2021"
},
"471": {
"phone_number": 7380XXXXXX,
"latitude": 28.637163,
"longitude": 77.34317,
"location": "Near Santt Vihar Apartment, Pocket 4, Abhay Khand, Indirapuram, Ghaziabad, Uttar Pradesh",
"time_recorded": "23:54:24 27-01-2021"
},
"472": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:24:24 28-01-2021"
},
"473": {
"phone_number": 7380XXXXXX,
"latitude": 28.6413,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:40:12 28-01-2021"
},
"474": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "00:54:19 28-01-2021"
},
"475": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:24:35 28-01-2021"
},
"476": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:39:18 28-01-2021"
},
"477": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "01:54:18 28-01-2021"
},
"478": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:24:50 28-01-2021"
},
"479": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:39:20 28-01-2021"
},
"480": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "02:54:24 28-01-2021"
},
"481": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:24:26 28-01-2021"
},
"482": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:39:20 28-01-2021"
},
"483": {
"phone_number": 7380XXXXXX,
"latitude": 28.64166,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "03:54:16 28-01-2021"
},
"484": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:24:50 28-01-2021"
},
"485": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:39:19 28-01-2021"
},
"486": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "04:54:16 28-01-2021"
},
"487": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:24:17 28-01-2021"
},
"488": {
"phone_number": 7380XXXXXX,
"latitude": 28.64112,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:39:17 28-01-2021"
},
"489": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "05:54:15 28-01-2021"
},
"490": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:24:23 28-01-2021"
},
"491": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:39:09 28-01-2021"
},
"492": {
"phone_number": 7380XXXXXX,
"latitude": 28.64112,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "06:54:13 28-01-2021"
},
"493": {
"phone_number": 7380XXXXXX,
"latitude": 28.641842,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:24:15 28-01-2021"
},
"494": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:39:29 28-01-2021"
},
"495": {
"phone_number": 7380XXXXXX,
"latitude": 28.64112,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "07:54:13 28-01-2021"
},
"496": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:24:57 28-01-2021"
},
"497": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:39:31 28-01-2021"
},
"498": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "08:54:33 28-01-2021"
},
"499": {
"phone_number": 7380XXXXXX,
"latitude": 28.64112,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:24:20 28-01-2021"
},
"500": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:39:34 28-01-2021"
},
"501": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "09:54:17 28-01-2021"
},
"502": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:24:13 28-01-2021"
},
"503": {
"phone_number": 7380XXXXXX,
"latitude": 28.64103,
"longitude": 77.33929,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:39:37 28-01-2021"
},
"504": {
"phone_number": 7380XXXXXX,
"latitude": 28.641752,
"longitude": 77.3393,
"location": "Near St. Mary Public School, Block B, Sector 3, Vaishali, Ghaziabad, Uttar Pradesh",
"time_recorded": "10:54:14 28-01-2021"
},
"505": {
"phone_number": 7380XXXXXX,
"latitude": 28.606186,
"longitude": 77.37913,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "11:24:59 28-01-2021"
},
"506": {
"phone_number": 7380XXXXXX,
"latitude": 28.606289,
"longitude": 77.37989,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "11:41:28 28-01-2021"
},
"507": {
"phone_number": 7380XXXXXX,
"latitude": 28.606276,
"longitude": 77.37978,
"location": "in Shramik Kunj, Sector 66, Noida, Uttar Pradesh",
"time_recorded": "11:54:10 28-01-2021"
}
}
Status Code: 200
6. Add Number
This endpoint is used to add number into tracking system.
Body Parameters
Parameter | Mandatory | Description |
---|---|---|
phone_number | Yes | 10 digit previously added mobile number |
name | No | Name of the tracking person |
operator | No | This can be one of Aircel, airtel, bsnl, idea, Jio, vodafone |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Invalid Operator passed
{
"status": "invalid operator valid operators are Aircel, airtel, bsnl, idea, Jio, vodafone"
}
Endpoint:
Method: POST
Type: RAW
URL: https://dashboard.traqo.in/api/v2/add_phone_number/
Body:
{
"phone_number":"7905XXXXXX",
"name":"nikhil",
"operator":"jio"
}
More example Requests/Responses:
I. Example Request: Add Number
Body:
{
"phone_number":"7905XXXXXX",
"name":"nikhil",
"operator":"jio"
}
I. Example Response: Add Number
{
"status": "success"
}
Status Code: 200
7. Get latest location
This API can be used for getting latest location of the passed number.
Body Parameters
Parameter | Mandatory | Description |
---|---|---|
phone_number | Yes | 10 digit previously added mobile number |
OUTPUT
Invalid user credentials
{
"errors": "Invalid username/password."
}
Wrong or not added mobile number passed
{
"status": "invalid_mobile"
}
Endpoint:
Method: GET
Type: RAW
URL: https://dashboard.traqo.in/api/v2/location/
Body:
{
"phone_number": "7380XXXXXXX"
}
More example Requests/Responses:
I. Example Request: Fetch location
Body: None
I. Example Response: Fetch location
{
"phone_number": 7380XXXXXXX,
"latitude": null,
"longitude": null,
"location": "None",
"time_recorded": "19:08:19 01-02-2021"
}
Status Code: 200
8. Check IVR calls history
This API can be utilized to check IVR called history for a number.
OUTPUT
Response param in the response body can be one of the below :
Response | Remarks |
---|---|
1 | Consent received |
D | Call Disconnected |
N | No button pressed |
Invalid user credentials
{
"errors": "Invalid username/password."
}
Endpoint:
Method: POST
Type: RAW
URL: https://dashboard.traqo.in/api/v3/ivr_call_logs/
Body:
{
"phone_number":"9060819004"
}
More example Requests/Responses:
I. Example Request: Check IVR calls history
Body:
{
"phone_number":"9060819004"
}
I. Example Response: Check IVR calls history
{
"data": [
{
"datetime": "2022-10-01 19:07:01",
"response": "1"
},
{
"datetime": "2022-09-28 15:47:31",
"response": "1"
},
{
"datetime": "2022-09-18 18:29:03",
"response": "1"
},
{
"datetime": "2022-09-11 18:42:17",
"response": "D"
},
{
"datetime": "2022-09-09 17:59:31",
"response": "N"
},
{
"datetime": "2022-09-04 16:27:47",
"response": "1"
},
{
"datetime": "2022-08-31 17:01:41",
"response": "1"
},
{
"datetime": "2022-08-21 18:07:24",
"response": "1"
},
{
"datetime": "2022-08-06 18:02:20",
"response": "1"
},
{
"datetime": "2022-08-04 18:10:25",
"response": "1"
},
{
"datetime": "2022-08-02 19:18:06",
"response": "1"
},
{
"datetime": "2022-07-28 17:22:45",
"response": "1"
},
{
"datetime": "2022-07-26 18:55:40",
"response": "1"
},
{
"datetime": "2022-07-23 17:56:40",
"response": "1"
},
{
"datetime": "2022-06-27 18:33:34",
"response": "1"
},
{
"datetime": "2022-06-16 21:57:22",
"response": "1"
},
{
"datetime": "2022-06-15 19:04:55",
"response": "1"
},
{
"datetime": "2022-06-14 18:39:31",
"response": "1"
},
{
"datetime": "2022-05-22 13:26:07",
"response": "1"
},
{
"datetime": "2022-05-17 13:00:47",
"response": "1"
}
],
"status": "success"
}
Status Code: 200
9. Bulk Check Consent
This API can be used to check consent status of all the active numbers
Endpoint:
Method: POST
Type:
URL: https://dashboard.traqo.in/api/v3/bulk_check_consent/
More example Requests/Responses:
I. Example Request: Bulk Check Consent
Body: None
I. Example Response: Bulk Check Consent
{
"status": "success",
"data": [
{
"phone_number": 0,
"consent": "PENDING"
},
{
"phone_number": 8147313XXX,
"consent": "ALLOWED"
},
{
"phone_number": 988XXXX330,
"consent": "ALLOWED"
},
{
"phone_number": 80XXX54866,
"consent": "ALLOWED"
}
]
}
Status Code: 200
KYC verification APIs
1. RC verification
Endpoint:
Method: POST
Type: RAW
URL: http://dashboard.traqo.in/api/v1/kyc/verify_rc/
Body:
{
"vh_number":"NL01AD2734"
}
More example Requests/Responses:
I. Example Request: http://dashboard.traqo.in/api/v1/kyc/verify_rc/
Body:
{
"vh_number":"NL01AD2734"
}
I. Example Response: http://dashboard.traqo.in/api/v1/kyc/verify_rc/
{
"success": true,
"data": {
"Vehicle": {
"owner": "SALIM KHAN",
"ownerNumber": "1",
"ownerFathersName": "S/O HALIM KHAN",
"presentAddress_completeAddress": "NST COLONY , KOHIMA,NAGALAND, -797001",
"presentAddress_addressLine": "NST COLONY",
"presentAddress_city": [
"KOHIMA SADAR"
],
"presentAddress_district": [
"KOHIMA"
],
"presentAddress_country": [
"IN",
"IND",
"INDIA"
],
"presentAddress_pincode": "797001",
"permanentAddress_completeAddress": "AT-HATHGADDA PO-BARKANGANGO , PS-BARHI HAZARIBAGH,JH, -0",
"permanentAddress_addressLine": "AT-HATHGADDA PO-BARKANGANGO,PS-BARHI H,JH,0",
"permanentAddress_city": [
"BARKANGANGO"
],
"permanentAddress_district": [
"HAZARIBAG"
],
"permanentAddress_country": [
"IN",
"IND",
"INDIA"
],
"permanentAddress_pincode": "825323",
"registrationDetail_blacklistStatus": false,
"registrationDetail_rcStatusAsOn": "04/10/2022",
"registrationDetail_authority": "KOHIMA RTO, Nagaland",
"registrationDetail_date": "15/04/2019",
"registrationDetail_expiryDate": "14/04/2023",
"registrationDetail_number": "NL01AD2734",
"registrationDetail_nocDetails": "NA",
"registrationDetail_taxUpto": "01/01/1900",
"hypothecationDetail_financier": "INDUSIND BANK LTD",
"vehicle_number": "NL01AD2734",
"vehicle_fuelType": "DIESEL",
"vehicle_normsDesc": "Not Available",
"vehicle_vehicleMMV": "TATA MOTORS LTD SIGNA 4018",
"vehicle_companyName": "TATA MOTORS LTD",
"vehicle_modelName": "SIGNA 4018",
"vehicle_category": "HGV",
"vehicle_color": "WHITE",
"vehicle_chassis": "MAT447264K5B02564",
"vehicle_class": "Goods Carrier(HGV",
"vehicle_engine": "91A84856440",
"vehicle_manufacturingDate": "2/2019",
"vehicle_cubicCapacity": "5883.0",
"vehicle_grossWeight": "45500",
"vehicle_unladenWeight": "13500",
"vehicle_noCyl": "6",
"vehicle_seatCap": "3",
"vehicle_wheelBase": "3200",
"insurance_policyNumber": "3379/02347018/000/03",
"insurance_company": "Cholamandalam MS General Insurance Co. Ltd.",
"insurance_validTill": "30/03/2023",
"pucc_number": "JH00200490002558",
"pucc_upto": "12/10/2022"
}
}
}
Status Code: 200
2. Aadhar verification
Verify aadhar number
Endpoint:
Method: POST
Type: RAW
URL: http://dashboard.traqo.in//api/v1/kyc/verify_aadhar/
Body:
{
"aadhaarNumber":"76939562XXXX"
}
More example Requests/Responses:
I. Example Request: http://dashboard.traqo.in//api/v1/kyc/verify_aadhar/
Body:
{
"aadhaarNumber":"76939562XXXX"
}
I. Example Response: http://dashboard.traqo.in//api/v1/kyc/verify_aadhar/
{
"success": true,
"data": {
"verified": "true",
"ageBand": "20-30",
"gender": "MALE",
"mobileNumber": "xxxxxxx699",
"state": "Uttar Pradesh"
}
}
Status Code: 200
3. DL verification
Endpoint:
Method: POST
Type: RAW
URL: https://dashboard.traqo.in/api/v1/kyc/verify_dl/
Body:
{
"dl_number":"UP6420070066681",
"dl_dob":"06/02/1986"
}
More example Requests/Responses:
I. Example Request: DL verification
Body:
{
"dl_number":"UP6420070066681",
"dl_dob":"06/02/1986"
}
I. Example Response: DL verification
{
"success": true,
"data": {
"DL": {
"success": true,
"data_number": "UP6420070066681",
"data_dob": "06/02/1986",
"data_validity_nonTransport_to": "16/11/2027",
"data_validity_nonTransport_from": "17/11/2007",
"data_validity_hazardousValidTill": "",
"data_validity_transport_to": "",
"data_validity_transport_from": "",
"data_validity_hillValidTill": "",
"data_details_dateOfIssue": "17/11/2007",
"data_details_status": "",
"data_details_name": "SURESH KUMAR KEWAT",
"data_details_fatherOrHusbandName": "BHOLA PRASAD KEWAT",
"data_details_address_address": "KHADIYA, SHAKTINAGAR, DUDHI,SONBHADRA KHADIYA, SHAKTINAGAR, DUDHI,SONBHADRA",
"data_details_photo": "https://persist.signzy.tech/api/files/435100759/download/f4492363914742e1b23d57fd8ec8341e9a296f8d103c45b1aab2193496a07a84.jpeg",
"data_details_covDetails": []
}
}
}
Status Code: 200
Generated at 2022-11-17 18:01:57 by docgen
- Administrator edited 2 years ago
·
- 1 Revisions
- Edit Page
- New Page