-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBasic Apis.postman_collection.json
647 lines (647 loc) · 114 KB
/
Basic Apis.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
{
"info": {
"_postman_id": "de2270b8-ab46-455e-8477-e4609c1b8baf",
"name": "Basic Apis",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "29359887"
},
"item": [
{
"name": "auth",
"item": [
{
"name": "Login",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"userid\": \"user\",\n \"password\": \"1234\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/auth/login",
"host": ["{{url}}"],
"path": ["api", "v1", "auth", "login"]
}
},
"response": []
},
{
"name": "signup",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"userid\": \"user1\",\n \"password\": \"1234\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/auth/signup",
"host": ["{{url}}"],
"path": ["api", "v1", "auth", "signup"]
}
},
"response": []
},
{
"name": "New Request",
"request": {
"method": "GET",
"header": []
},
"response": []
}
]
},
{
"name": "airport",
"item": [
{
"name": "airports list",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/airports",
"host": ["{{url}}"],
"path": ["api", "v1", "airports"]
}
},
"response": [
{
"name": "airports list",
"originalRequest": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/airports",
"host": ["{{url}}"],
"path": ["api", "v1", "airports"]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "12455"
},
{
"key": "ETag",
"value": "W/\"30a7-Xj7Td7bGC70RXioZhcaiYCbVO7U\""
},
{
"key": "Date",
"value": "Sun, 28 Apr 2024 07:21:49 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "{\n \"meta\": {\n \"before\": null,\n \"limit\": 50,\n \"after\": \"g3QAAAACdwJpZG0AAAAKYXJwX2FkbF9hdXcEbmFtZW0AAAAQQWRlbGFpZGUgQWlycG9ydA==\"\n },\n \"data\": [\n {\n \"city_name\": \"Aachen\",\n \"icao_code\": \"EDKA\",\n \"iata_city_code\": \"AAH\",\n \"iata_country_code\": \"DE\",\n \"iata_code\": \"AAH\",\n \"latitude\": 50.823345,\n \"longitude\": 6.186722,\n \"city\": null,\n \"time_zone\": \"Europe/Berlin\",\n \"name\": \"Aachen Merzbrück Airfield\",\n \"id\": \"arp_aah_de\"\n },\n {\n \"city_name\": \"Aalborg\",\n \"icao_code\": \"EKYT\",\n \"iata_city_code\": \"AAL\",\n \"iata_country_code\": \"DK\",\n \"iata_code\": \"AAL\",\n \"latitude\": 57.094838,\n \"longitude\": 9.852853,\n \"city\": null,\n \"time_zone\": \"Europe/Copenhagen\",\n \"name\": \"Aalborg Airport\",\n \"id\": \"arp_aal_dk\"\n },\n {\n \"city_name\": \"Aarhus\",\n \"icao_code\": \"EKAH\",\n \"iata_city_code\": \"AAR\",\n \"iata_country_code\": \"DK\",\n \"iata_code\": \"AAR\",\n \"latitude\": 56.307566,\n \"longitude\": 10.624079,\n \"city\": null,\n \"time_zone\": \"Europe/Copenhagen\",\n \"name\": \"Aarhus Airport\",\n \"id\": \"arp_aar_dk\"\n },\n {\n \"city_name\": \"Aasiaat\",\n \"icao_code\": \"BGAA\",\n \"iata_city_code\": \"JEG\",\n \"iata_country_code\": \"GL\",\n \"iata_code\": \"JEG\",\n \"latitude\": 68.721719,\n \"longitude\": -52.785546,\n \"city\": null,\n \"time_zone\": \"America/Godthab\",\n \"name\": \"Aasiaat Airport\",\n \"id\": \"arp_jeg_gl\"\n },\n {\n \"city_name\": \"Abadan\",\n \"icao_code\": \"OIAA\",\n \"iata_city_code\": \"ABD\",\n \"iata_country_code\": \"IR\",\n \"iata_code\": \"ABD\",\n \"latitude\": 30.367608,\n \"longitude\": 48.227605,\n \"city\": null,\n \"time_zone\": \"Asia/Tehran\",\n \"name\": \"Abadan Airport\",\n \"id\": \"arp_abd_ir\"\n },\n {\n \"city_name\": \"Aba\",\n \"icao_code\": \"ZUHY\",\n \"iata_city_code\": \"AHJ\",\n \"iata_country_code\": \"CN\",\n \"iata_code\": \"AHJ\",\n \"latitude\": 32.530255,\n \"longitude\": 102.35379,\n \"city\": null,\n \"time_zone\": \"Asia/Shanghai\",\n \"name\": \"Aba Hongyuan Airport\",\n \"id\": \"arp_ahj_cn\"\n },\n {\n \"city_name\": \"Abaiang\",\n \"icao_code\": \"NGAB\",\n \"iata_city_code\": \"ABF\",\n \"iata_country_code\": \"KI\",\n \"iata_code\": \"ABF\",\n \"latitude\": 1.798609,\n \"longitude\": 173.041,\n \"city\": null,\n \"time_zone\": \"Pacific/Tarawa\",\n \"name\": \"Abaiang Airport\",\n \"id\": \"arp_abf_ki\"\n },\n {\n \"city_name\": \"Abakan\",\n \"icao_code\": \"UNAA\",\n \"iata_city_code\": \"ABA\",\n \"iata_country_code\": \"RU\",\n \"iata_code\": \"ABA\",\n \"latitude\": 53.75095,\n \"longitude\": 91.399502,\n \"city\": null,\n \"time_zone\": \"Asia/Krasnoyarsk\",\n \"name\": \"Abakan Airport\",\n \"id\": \"arp_aba_ru\"\n },\n {\n \"city_name\": \"Dire Dawa\",\n \"icao_code\": \"HADR\",\n \"iata_city_code\": \"DIR\",\n \"iata_country_code\": \"ET\",\n \"iata_code\": \"DIR\",\n \"latitude\": 9.624085,\n \"longitude\": 41.854186,\n \"city\": null,\n \"time_zone\": \"Africa/Addis_Ababa\",\n \"name\": \"Aba Tenna Dejazmach Yilma International Airport\",\n \"id\": \"arp_dir_et\"\n },\n {\n \"city_name\": \"Abau\",\n \"icao_code\": null,\n \"iata_city_code\": \"ABW\",\n \"iata_country_code\": \"PG\",\n \"iata_code\": \"ABW\",\n \"latitude\": -10.1617,\n \"longitude\": 148.691,\n \"city\": null,\n \"time_zone\": \"Pacific/Port_Moresby\",\n \"name\": \"Abau Airport\",\n \"id\": \"arp_abw_pg\"\n },\n {\n \"city_name\": \"Bogue\",\n \"icao_code\": \"GQNE\",\n \"iata_city_code\": \"BGH\",\n \"iata_country_code\": \"MR\",\n \"iata_code\": \"BGH\",\n \"latitude\": 16.633314,\n \"longitude\": -14.200001,\n \"city\": null,\n \"time_zone\": \"Africa/Nouakchott\",\n \"name\": \"Abbaye Airport\",\n \"id\": \"arp_bgh_mr\"\n },\n {\n \"city_name\": \"Abbotsford\",\n \"icao_code\": \"CYXX\",\n \"iata_city_code\": \"YXX\",\n \"iata_country_code\": \"CA\",\n \"iata_code\": \"YXX\",\n \"latitude\": 49.024209,\n \"longitude\": -122.367777,\n \"city\": null,\n \"time_zone\": \"America/Vancouver\",\n \"name\": \"Abbotsford International Airport\",\n \"id\": \"arp_yxx_ca\"\n },\n {\n \"city_name\": \"Abbs\",\n \"icao_code\": null,\n \"iata_city_code\": \"EAB\",\n \"iata_country_code\": \"YE\",\n \"iata_code\": \"EAB\",\n \"latitude\": 16.011094,\n \"longitude\": 43.175057,\n \"city\": null,\n \"time_zone\": \"Asia/Aden\",\n \"name\": \"Abbse Airport\",\n \"id\": \"arp_eab_ye\"\n },\n {\n \"city_name\": \"Tiaret\",\n \"icao_code\": \"DAOB\",\n \"iata_city_code\": \"TID\",\n \"iata_country_code\": \"DZ\",\n \"iata_code\": \"TID\",\n \"latitude\": 35.340761,\n \"longitude\": 1.463628,\n \"city\": null,\n \"time_zone\": \"Africa/Algiers\",\n \"name\": \"Abdelhafid Boussouf Bou Chekif Airport\",\n \"id\": \"arp_tid_dz\"\n },\n {\n \"city_name\": \"Malang\",\n \"icao_code\": \"WARA\",\n \"iata_city_code\": \"MLG\",\n \"iata_country_code\": \"ID\",\n \"iata_code\": \"MLG\",\n \"latitude\": -7.930832,\n \"longitude\": 112.71332,\n \"city\": null,\n \"time_zone\": \"Asia/Jakarta\",\n \"name\": \"Abdul Rachman Saleh Airport\",\n \"id\": \"arp_mlg_id\"\n },\n {\n \"city_name\": \"Abeche\",\n \"icao_code\": \"FTTC\",\n \"iata_city_code\": \"AEH\",\n \"iata_country_code\": \"TD\",\n \"iata_code\": \"AEH\",\n \"latitude\": 13.847093,\n \"longitude\": 20.84618,\n \"city\": null,\n \"time_zone\": \"Africa/Ndjamena\",\n \"name\": \"Abeche Airport\",\n \"id\": \"arp_aeh_td\"\n },\n {\n \"city_name\": \"Zanzibar\",\n \"icao_code\": \"HTZA\",\n \"iata_city_code\": \"ZNZ\",\n \"iata_country_code\": \"TZ\",\n \"iata_code\": \"ZNZ\",\n \"latitude\": -6.220056,\n \"longitude\": 39.222999,\n \"city\": null,\n \"time_zone\": \"Africa/Dar_es_Salaam\",\n \"name\": \"Abeid Amani Karume International Airport\",\n \"id\": \"arp_znz_tz\"\n },\n {\n \"city_name\": \"Santa Clara\",\n \"icao_code\": \"MUSC\",\n \"iata_city_code\": \"SNU\",\n \"iata_country_code\": \"CU\",\n \"iata_code\": \"SNU\",\n \"latitude\": 22.492177,\n \"longitude\": -79.943793,\n \"city\": null,\n \"time_zone\": \"America/Havana\",\n \"name\": \"Abel Santamaria Airport\",\n \"id\": \"arp_snu_cu\"\n },\n {\n \"city_name\": \"Abemama Atoll\",\n \"icao_code\": \"NGTB\",\n \"iata_city_code\": \"AEA\",\n \"iata_country_code\": \"KI\",\n \"iata_code\": \"AEA\",\n \"latitude\": 0.490786,\n \"longitude\": 173.830027,\n \"city\": null,\n \"time_zone\": \"Pacific/Tarawa\",\n \"name\": \"Abemama Atoll Airport\",\n \"id\": \"arp_aea_ki\"\n },\n {\n \"city_name\": \"Abengourou\",\n \"icao_code\": \"DIAU\",\n \"iata_city_code\": \"OGO\",\n \"iata_country_code\": \"CI\",\n \"iata_code\": \"OGO\",\n \"latitude\": 6.715113,\n \"longitude\": -3.470309,\n \"city\": null,\n \"time_zone\": \"Africa/Abidjan\",\n \"name\": \"Abengourou Airport\",\n \"id\": \"arp_ogo_ci\"\n },\n {\n \"city_name\": \"Aberdeen\",\n \"icao_code\": \"EGPD\",\n \"iata_city_code\": \"ABZ\",\n \"iata_country_code\": \"GB\",\n \"iata_code\": \"ABZ\",\n \"latitude\": 57.202799,\n \"longitude\": -2.198971,\n \"city\": null,\n \"time_zone\": \"Europe/London\",\n \"name\": \"Aberdeen International Airport\",\n \"id\": \"arp_abz_gb\"\n },\n {\n \"city_name\": \"Aberdeen\",\n \"icao_code\": \"KABR\",\n \"iata_city_code\": \"ABR\",\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ABR\",\n \"latitude\": 45.451279,\n \"longitude\": -98.419762,\n \"city\": null,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Aberdeen Regional Airport\",\n \"id\": \"arp_abr_us\"\n },\n {\n \"city_name\": \"Abha\",\n \"icao_code\": \"OEAB\",\n \"iata_city_code\": \"AHB\",\n \"iata_country_code\": \"SA\",\n \"iata_code\": \"AHB\",\n \"latitude\": 18.237476,\n \"longitude\": 42.657127,\n \"city\": null,\n \"time_zone\": \"Asia/Riyadh\",\n \"name\": \"Abha Regional Airport\",\n \"id\": \"arp_ahb_sa\"\n },\n {\n \"city_name\": \"Abilene\",\n \"icao_code\": \"KABI\",\n \"iata_city_code\": \"ABI\",\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ABI\",\n \"latitude\": 32.411237,\n \"longitude\": -99.681822,\n \"city\": {\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ABI\",\n \"name\": \"Abilene\",\n \"id\": \"cit_abi_us\"\n },\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Abilene Regional Airport\",\n \"id\": \"arp_abi_us\"\n },\n {\n \"city_name\": \"Abingdon Downs\",\n \"icao_code\": \"YABI\",\n \"iata_city_code\": \"ABG\",\n \"iata_country_code\": \"AU\",\n \"iata_code\": \"ABG\",\n \"latitude\": -17.616699,\n \"longitude\": 143.167007,\n \"city\": null,\n \"time_zone\": \"Australia/Brisbane\",\n \"name\": \"Abingdon Downs Airport\",\n \"id\": \"arp_abg_au\"\n },\n {\n \"city_name\": \"Aboisso\",\n \"icao_code\": \"DIAO\",\n \"iata_city_code\": \"ABO\",\n \"iata_country_code\": \"CI\",\n \"iata_code\": \"ABO\",\n \"latitude\": 5.46667,\n \"longitude\": -3.2,\n \"city\": null,\n \"time_zone\": \"Africa/Abidjan\",\n \"name\": \"Aboisso Airport\",\n \"id\": \"arp_abo_ci\"\n },\n {\n \"city_name\": \"Abou-Deïa\",\n \"icao_code\": null,\n \"iata_city_code\": \"AOD\",\n \"iata_country_code\": \"TD\",\n \"iata_code\": \"AOD\",\n \"latitude\": 11.466667,\n \"longitude\": 19.283333,\n \"city\": null,\n \"time_zone\": \"Africa/Ndjamena\",\n \"name\": \"Abou-Deïa Airport\",\n \"id\": \"arp_aod_td\"\n },\n {\n \"city_name\": \"Springfield\",\n \"icao_code\": \"KSPI\",\n \"iata_city_code\": \"SPI\",\n \"iata_country_code\": \"US\",\n \"iata_code\": \"SPI\",\n \"latitude\": 39.8439,\n \"longitude\": -89.677919,\n \"city\": null,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Abraham Lincoln Capital Airport\",\n \"id\": \"arp_spi_us\"\n },\n {\n \"city_name\": \"Ransiki\",\n \"icao_code\": \"WASC\",\n \"iata_city_code\": \"RSK\",\n \"iata_country_code\": \"ID\",\n \"iata_code\": \"RSK\",\n \"latitude\": 45.535978,\n \"longitude\": 9.199833,\n \"city\": null,\n \"time_zone\": \"Europe/Rome\",\n \"name\": \"Abresso Airport\",\n \"id\": \"arp_rsk_id\"\n },\n {\n \"city_name\": \"Pescara\",\n \"icao_code\": \"LIBP\",\n \"iata_city_code\": \"PSR\",\n \"iata_country_code\": \"IT\",\n \"iata_code\": \"PSR\",\n \"latitude\": 42.431276,\n \"longitude\": 14.183883,\n \"city\": null,\n \"time_zone\": \"Europe/Rome\",\n \"name\": \"Abruzzo Airport\",\n \"id\": \"arp_psr_it\"\n },\n {\n \"city_name\": \"Abu Dhabi\",\n \"icao_code\": \"OMAA\",\n \"iata_city_code\": \"AUH\",\n \"iata_country_code\": \"AE\",\n \"iata_code\": \"AUH\",\n \"latitude\": 24.437469,\n \"longitude\": 54.650586,\n \"city\": {\n \"iata_country_code\": \"AE\",\n \"iata_code\": \"AUH\",\n \"name\": \"Abu Dhabi\",\n \"id\": \"cit_auh_ae\"\n },\n \"time_zone\": \"Asia/Dubai\",\n \"name\": \"Abu Dhabi International Airport\",\n \"id\": \"arp_auh_ae\"\n },\n {\n \"city_name\": \"Abu Musa Island\",\n \"icao_code\": \"OIBA\",\n \"iata_city_code\": \"AEU\",\n \"iata_country_code\": \"IR\",\n \"iata_code\": \"AEU\",\n \"latitude\": 25.876502,\n \"longitude\": 55.031069,\n \"city\": null,\n \"time_zone\": \"Asia/Tehran\",\n \"name\": \"Abu Musa Island Airport\",\n \"id\": \"arp_aeu_ir\"\n },\n {\n \"city_name\": \"Abu Rudeis\",\n \"icao_code\": null,\n \"iata_city_code\": \"AUE\",\n \"iata_country_code\": \"EG\",\n \"iata_code\": \"AUE\",\n \"latitude\": 28.901826,\n \"longitude\": 33.198663,\n \"city\": null,\n \"time_zone\": \"Africa/Cairo\",\n \"name\": \"Abu Rudeis Airport\",\n \"id\": \"arp_aue_eg\"\n },\n {\n \"city_name\": \"Abu Simbel\",\n \"icao_code\": \"HEBL\",\n \"iata_city_code\": \"ABS\",\n \"iata_country_code\": \"EG\",\n \"iata_code\": \"ABS\",\n \"latitude\": 22.373083,\n \"longitude\": 31.611245,\n \"city\": null,\n \"time_zone\": \"Africa/Cairo\",\n \"name\": \"Abu Simbel Airport\",\n \"id\": \"arp_abs_eg\"\n },\n {\n \"city_name\": \"New Iberia\",\n \"icao_code\": \"KARA\",\n \"iata_city_code\": \"ARA\",\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ARA\",\n \"latitude\": 30.037854,\n \"longitude\": -91.883189,\n \"city\": null,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Acadiana Regional Airport\",\n \"id\": \"arp_ara_us\"\n },\n {\n \"city_name\": \"Acaricuara\",\n \"icao_code\": null,\n \"iata_city_code\": \"ARF\",\n \"iata_country_code\": \"CO\",\n \"iata_code\": \"ARF\",\n \"latitude\": 0.53333,\n \"longitude\": -70.1333,\n \"city\": null,\n \"time_zone\": \"America/Bogota\",\n \"name\": \"Acaricuara Airport\",\n \"id\": \"arp_arf_co\"\n },\n {\n \"city_name\": \"Melfa\",\n \"icao_code\": \"KMFV\",\n \"iata_city_code\": \"MFV\",\n \"iata_country_code\": \"US\",\n \"iata_code\": \"MFV\",\n \"latitude\": 37.644864,\n \"longitude\": -75.761117,\n \"city\": null,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Accomack County Airport\",\n \"id\": \"arp_mfv_us\"\n },\n {\n \"city_name\": \"Achinsk\",\n \"icao_code\": \"UNKS\",\n \"iata_city_code\": \"ACS\",\n \"iata_country_code\": \"RU\",\n \"iata_code\": \"ACS\",\n \"latitude\": 56.269088,\n \"longitude\": 90.570617,\n \"city\": null,\n \"time_zone\": \"Asia/Krasnoyarsk\",\n \"name\": \"Achinsk Airport\",\n \"id\": \"arp_acs_ru\"\n },\n {\n \"city_name\": \"Achutupo\",\n \"icao_code\": null,\n \"iata_city_code\": \"ACU\",\n \"iata_country_code\": \"PA\",\n \"iata_code\": \"ACU\",\n \"latitude\": 9.188728,\n \"longitude\": -77.994073,\n \"city\": null,\n \"time_zone\": \"America/Panama\",\n \"name\": \"Achutupo Airport\",\n \"id\": \"arp_acu_pa\"\n },\n {\n \"city_name\": \"A Coruña\",\n \"icao_code\": \"LECO\",\n \"iata_city_code\": \"LCG\",\n \"iata_country_code\": \"ES\",\n \"iata_code\": \"LCG\",\n \"latitude\": 43.301777,\n \"longitude\": -8.378186,\n \"city\": null,\n \"time_zone\": \"Europe/Madrid\",\n \"name\": \"A Coruña Airport\",\n \"id\": \"arp_lcg_es\"\n },\n {\n \"city_name\": \"Adado\",\n \"icao_code\": null,\n \"iata_city_code\": \"AAD\",\n \"iata_country_code\": \"SO\",\n \"iata_code\": \"AAD\",\n \"latitude\": 6.096533,\n \"longitude\": 46.637562,\n \"city\": null,\n \"time_zone\": \"Africa/Mogadishu\",\n \"name\": \"Adado Airport\",\n \"id\": \"arp_aad_so\"\n },\n {\n \"city_name\": \"Adak Island\",\n \"icao_code\": \"PADK\",\n \"iata_city_code\": \"ADK\",\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ADK\",\n \"latitude\": 51.877998,\n \"longitude\": -176.645996,\n \"city\": null,\n \"time_zone\": \"America/Adak\",\n \"name\": \"Adak Airport\",\n \"id\": \"arp_adk_us\"\n },\n {\n \"city_name\": \"Adam\",\n \"icao_code\": null,\n \"iata_city_code\": \"AOM\",\n \"iata_country_code\": \"OM\",\n \"iata_code\": \"AOM\",\n \"latitude\": 22.492155,\n \"longitude\": 57.42781,\n \"city\": null,\n \"time_zone\": \"Asia/Muscat\",\n \"name\": \"Adam Airport\",\n \"id\": \"arp_aom_om\"\n },\n {\n \"city_name\": \"Adampur\",\n \"icao_code\": \"VIAX\",\n \"iata_city_code\": \"AIP\",\n \"iata_country_code\": \"IN\",\n \"iata_code\": \"AIP\",\n \"latitude\": 31.424348,\n \"longitude\": 75.765892,\n \"city\": null,\n \"time_zone\": \"Asia/Kolkata\",\n \"name\": \"Adampur Airport\",\n \"id\": \"arp_aip_in\"\n },\n {\n \"city_name\": \"Ada\",\n \"icao_code\": \"KADH\",\n \"iata_city_code\": \"ADT\",\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ADT\",\n \"latitude\": 34.803321,\n \"longitude\": -96.670995,\n \"city\": null,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Ada Municipal Airport\",\n \"id\": \"arp_adt_us\"\n },\n {\n \"city_name\": \"Adana\",\n \"icao_code\": \"LTAF\",\n \"iata_city_code\": \"ADA\",\n \"iata_country_code\": \"TR\",\n \"iata_code\": \"ADA\",\n \"latitude\": 36.983457,\n \"longitude\": 35.286266,\n \"city\": null,\n \"time_zone\": \"Europe/Istanbul\",\n \"name\": \"Adana Şakirpaşa Airport\",\n \"id\": \"arp_ada_tr\"\n },\n {\n \"city_name\": \"Adareil\",\n \"icao_code\": null,\n \"iata_city_code\": \"AEE\",\n \"iata_country_code\": \"SS\",\n \"iata_code\": \"AEE\",\n \"latitude\": 10.053341,\n \"longitude\": 32.959623,\n \"city\": null,\n \"time_zone\": \"Africa/Juba\",\n \"name\": \"Adareil Airport\",\n \"id\": \"arp_aee_ss\"\n },\n {\n \"city_name\": \"Addis Ababa\",\n \"icao_code\": \"HAAB\",\n \"iata_city_code\": \"ADD\",\n \"iata_country_code\": \"ET\",\n \"iata_code\": \"ADD\",\n \"latitude\": 8.979022,\n \"longitude\": 38.798719,\n \"city\": null,\n \"time_zone\": \"Africa/Addis_Ababa\",\n \"name\": \"Addis Ababa Bole International Airport\",\n \"id\": \"arp_add_et\"\n },\n {\n \"city_name\": \"Dallas\",\n \"icao_code\": \"KADS\",\n \"iata_city_code\": \"DFW\",\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ADS\",\n \"latitude\": 32.969286,\n \"longitude\": -96.836434,\n \"city\": {\n \"iata_country_code\": \"US\",\n \"iata_code\": \"DFW\",\n \"name\": \"Dallas\",\n \"id\": \"cit_dfw_us\"\n },\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Addison Airport\",\n \"id\": \"arp_ads_us\"\n },\n {\n \"city_name\": \"Adelaide\",\n \"icao_code\": \"YPAD\",\n \"iata_city_code\": \"ADL\",\n \"iata_country_code\": \"AU\",\n \"iata_code\": \"ADL\",\n \"latitude\": -34.945578,\n \"longitude\": 138.532122,\n \"city\": null,\n \"time_zone\": \"Australia/Adelaide\",\n \"name\": \"Adelaide Airport\",\n \"id\": \"arp_adl_au\"\n }\n ]\n}"
}
]
},
{
"name": "single airport",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/airports/arp_auh_ae",
"host": ["{{url}}"],
"path": ["api", "v1", "airports", "arp_auh_ae"]
}
},
"response": [
{
"name": "single airport",
"originalRequest": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/airports/arp_auh_ae",
"host": ["{{url}}"],
"path": ["api", "v1", "airports", "arp_auh_ae"]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "335"
},
{
"key": "ETag",
"value": "W/\"14f-Rfj23cPN7teik6hCoYwIfpUN/YU\""
},
{
"key": "Date",
"value": "Sun, 28 Apr 2024 07:21:35 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "{\n \"data\": {\n \"city_name\": \"Abu Dhabi\",\n \"icao_code\": \"OMAA\",\n \"iata_city_code\": \"AUH\",\n \"iata_country_code\": \"AE\",\n \"iata_code\": \"AUH\",\n \"latitude\": 24.437469,\n \"longitude\": 54.650586,\n \"city\": {\n \"iata_country_code\": \"AE\",\n \"iata_code\": \"AUH\",\n \"name\": \"Abu Dhabi\",\n \"id\": \"cit_auh_ae\"\n },\n \"time_zone\": \"Asia/Dubai\",\n \"name\": \"Abu Dhabi International Airport\",\n \"id\": \"arp_auh_ae\"\n }\n}"
}
]
}
]
},
{
"name": "cities",
"item": [
{
"name": "airports cities list",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/cities",
"host": ["{{url}}"],
"path": ["api", "v1", "cities"]
}
},
"response": [
{
"name": "airports list",
"originalRequest": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/cities/",
"host": ["{{url}}"],
"path": ["api", "v1", "cities", ""]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "32492"
},
{
"key": "ETag",
"value": "W/\"7eec-DlC+hIyCWdegJyBas/2r9ufe6sM\""
},
{
"key": "Date",
"value": "Sun, 28 Apr 2024 07:21:23 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "{\n \"meta\": {\n \"before\": null,\n \"limit\": 50,\n \"after\": \"g3QAAAACdwJpZG0AAAAKY2l0X2Nvc191c3cEbmFtZW0AAAAQQ29sb3JhZG8gU3ByaW5ncw==\"\n },\n \"data\": [\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Abilene\",\n \"iata_city_code\": \"ABI\",\n \"icao_code\": \"KABI\",\n \"iata_code\": \"ABI\",\n \"latitude\": 32.411237,\n \"longitude\": -99.681822,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Abilene Regional Airport\",\n \"id\": \"arp_abi_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Abilene\",\n \"iata_city_code\": \"ABI\",\n \"icao_code\": \"KDYS\",\n \"iata_code\": \"DYS\",\n \"latitude\": 32.420799,\n \"longitude\": -99.854599,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Dyess Air Force Base\",\n \"id\": \"arp_dys_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ABI\",\n \"name\": \"Abilene\",\n \"id\": \"cit_abi_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"AE\",\n \"city_name\": \"Abu Dhabi\",\n \"iata_city_code\": \"AUH\",\n \"icao_code\": \"OMAD\",\n \"iata_code\": \"AZI\",\n \"latitude\": 24.428556,\n \"longitude\": 54.457014,\n \"time_zone\": \"Asia/Dubai\",\n \"name\": \"Bateen Airport\",\n \"id\": \"arp_azi_ae\"\n },\n {\n \"iata_country_code\": \"AE\",\n \"city_name\": \"Abu Dhabi\",\n \"iata_city_code\": \"AUH\",\n \"icao_code\": \"OMAM\",\n \"iata_code\": \"DHF\",\n \"latitude\": 24.249302,\n \"longitude\": 54.548251,\n \"time_zone\": \"Asia/Dubai\",\n \"name\": \"Al Dhafra Air Base\",\n \"id\": \"arp_dhf_ae\"\n },\n {\n \"iata_country_code\": \"AE\",\n \"city_name\": \"Abu Dhabi\",\n \"iata_city_code\": \"AUH\",\n \"icao_code\": \"OMAA\",\n \"iata_code\": \"AUH\",\n \"latitude\": 24.437469,\n \"longitude\": 54.650586,\n \"time_zone\": \"Asia/Dubai\",\n \"name\": \"Abu Dhabi International Airport\",\n \"id\": \"arp_auh_ae\"\n },\n {\n \"iata_country_code\": \"AE\",\n \"city_name\": \"Abu Dhabi\",\n \"iata_city_code\": \"AUH\",\n \"icao_code\": null,\n \"iata_code\": \"AYM\",\n \"latitude\": 24.464725,\n \"longitude\": 54.610182,\n \"time_zone\": \"Asia/Dubai\",\n \"name\": \"Yas Island Seaplane Base Airport\",\n \"id\": \"arp_aym_ae\"\n }\n ],\n \"iata_country_code\": \"AE\",\n \"iata_code\": \"AUH\",\n \"name\": \"Abu Dhabi\",\n \"id\": \"cit_auh_ae\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"PG\",\n \"city_name\": \"Aitape\",\n \"iata_city_code\": \"ATP\",\n \"icao_code\": \"AYAI\",\n \"iata_code\": \"ATP\",\n \"latitude\": -3.143579,\n \"longitude\": 142.346516,\n \"time_zone\": \"Pacific/Port_Moresby\",\n \"name\": \"Aitape Airport\",\n \"id\": \"arp_atp_pg\"\n },\n {\n \"iata_country_code\": \"PG\",\n \"city_name\": \"Aitape\",\n \"iata_city_code\": \"ATP\",\n \"icao_code\": null,\n \"iata_code\": \"TAJ\",\n \"latitude\": -3.197688,\n \"longitude\": 142.429805,\n \"time_zone\": \"Pacific/Port_Moresby\",\n \"name\": \"Tadji Airport\",\n \"id\": \"arp_taj_pg\"\n }\n ],\n \"iata_country_code\": \"PG\",\n \"iata_code\": \"ATP\",\n \"name\": \"Aitape\",\n \"id\": \"cit_atp_pg\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Akron\",\n \"iata_city_code\": \"CAK\",\n \"icao_code\": \"KAKR\",\n \"iata_code\": \"AKC\",\n \"latitude\": 41.035888,\n \"longitude\": -81.467633,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Akron Fulton International Airport\",\n \"id\": \"arp_akc_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Akron\",\n \"iata_city_code\": \"CAK\",\n \"icao_code\": \"KCAK\",\n \"iata_code\": \"CAK\",\n \"latitude\": 40.915548,\n \"longitude\": -81.440739,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Akron–Canton Airport\",\n \"id\": \"arp_cak_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"CAK\",\n \"name\": \"Akron/Canton\",\n \"id\": \"cit_cak_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Alamogordo\",\n \"iata_city_code\": \"ALM\",\n \"icao_code\": \"KHMN\",\n \"iata_code\": \"HMN\",\n \"latitude\": 32.852501,\n \"longitude\": -106.107002,\n \"time_zone\": \"America/Denver\",\n \"name\": \"Holloman Air Force Base\",\n \"id\": \"arp_hmn_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Alamogordo\",\n \"iata_city_code\": \"ALM\",\n \"icao_code\": \"KALM\",\n \"iata_code\": \"ALM\",\n \"latitude\": 32.840108,\n \"longitude\": -105.9919,\n \"time_zone\": \"America/Denver\",\n \"name\": \"Alamogordo White Sands Regional Airport\",\n \"id\": \"arp_alm_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ALM\",\n \"name\": \"Alamogordo\",\n \"id\": \"cit_alm_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Alexandria\",\n \"iata_city_code\": \"AEX\",\n \"icao_code\": \"KESF\",\n \"iata_code\": \"ESF\",\n \"latitude\": 31.394614,\n \"longitude\": -92.295764,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Esler Regional Airport\",\n \"id\": \"arp_esf_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Alexandria\",\n \"iata_city_code\": \"AEX\",\n \"icao_code\": \"KAEX\",\n \"iata_code\": \"AEX\",\n \"latitude\": 31.326149,\n \"longitude\": -92.546915,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Alexandria International Airport\",\n \"id\": \"arp_aex_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"AEX\",\n \"name\": \"Alexandria\",\n \"id\": \"cit_aex_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"EG\",\n \"city_name\": \"Alexandria\",\n \"iata_city_code\": \"ALY\",\n \"icao_code\": \"HEAX\",\n \"iata_code\": \"ALY\",\n \"latitude\": 31.191435,\n \"longitude\": 29.952488,\n \"time_zone\": \"Africa/Cairo\",\n \"name\": \"El Nouzha Airport\",\n \"id\": \"arp_aly_eg\"\n },\n {\n \"iata_country_code\": \"EG\",\n \"city_name\": \"Alexandria\",\n \"iata_city_code\": \"ALY\",\n \"icao_code\": \"HEBA\",\n \"iata_code\": \"HBE\",\n \"latitude\": 30.931803,\n \"longitude\": 29.69568,\n \"time_zone\": \"Africa/Cairo\",\n \"name\": \"Borg El Arab Airport\",\n \"id\": \"arp_hbe_eg\"\n }\n ],\n \"iata_country_code\": \"EG\",\n \"iata_code\": \"ALY\",\n \"name\": \"Alexandria\",\n \"id\": \"cit_aly_eg\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Altus\",\n \"iata_city_code\": \"LTS\",\n \"icao_code\": \"KLTS\",\n \"iata_code\": \"LTS\",\n \"latitude\": 34.667099,\n \"longitude\": -99.266701,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Altus Air Force Base\",\n \"id\": \"arp_lts_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Altus\",\n \"iata_city_code\": \"LTS\",\n \"icao_code\": \"KAXS\",\n \"iata_code\": \"AXS\",\n \"latitude\": 34.698416,\n \"longitude\": -99.337992,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Altus/Quartz Mountain Regional Airport\",\n \"id\": \"arp_axs_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"LTS\",\n \"name\": \"Altus\",\n \"id\": \"cit_lts_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Amarillo\",\n \"iata_city_code\": \"AMA\",\n \"icao_code\": \"KTDW\",\n \"iata_code\": \"TDW\",\n \"latitude\": 35.169989,\n \"longitude\": -101.826954,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Tradewind Airport\",\n \"id\": \"arp_tdw_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Amarillo\",\n \"iata_city_code\": \"AMA\",\n \"icao_code\": \"KAMA\",\n \"iata_code\": \"AMA\",\n \"latitude\": 35.219956,\n \"longitude\": -101.706679,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Rick Husband Amarillo International Airport\",\n \"id\": \"arp_ama_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"AMA\",\n \"name\": \"Amarillo\",\n \"id\": \"cit_ama_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"JO\",\n \"city_name\": \"Amman\",\n \"iata_city_code\": \"AMM\",\n \"icao_code\": \"OJAM\",\n \"iata_code\": \"ADJ\",\n \"latitude\": 31.973712,\n \"longitude\": 35.987633,\n \"time_zone\": \"Asia/Amman\",\n \"name\": \"Amman Civil Airport\",\n \"id\": \"arp_adj_jo\"\n },\n {\n \"iata_country_code\": \"JO\",\n \"city_name\": \"Amman\",\n \"iata_city_code\": \"AMM\",\n \"icao_code\": \"OJAI\",\n \"iata_code\": \"AMM\",\n \"latitude\": 31.72266,\n \"longitude\": 35.992224,\n \"time_zone\": \"Asia/Amman\",\n \"name\": \"Queen Alia International Airport\",\n \"id\": \"arp_amm_jo\"\n }\n ],\n \"iata_country_code\": \"JO\",\n \"iata_code\": \"AMM\",\n \"name\": \"Amman\",\n \"id\": \"cit_amm_jo\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Anchorage\",\n \"iata_city_code\": \"ANC\",\n \"icao_code\": \"PANC\",\n \"iata_code\": \"ANC\",\n \"latitude\": 61.175143,\n \"longitude\": -149.99304,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Ted Stevens Anchorage International Airport\",\n \"id\": \"arp_anc_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Anchorage\",\n \"iata_city_code\": \"ANC\",\n \"icao_code\": \"PAED\",\n \"iata_code\": \"EDF\",\n \"latitude\": 61.251878,\n \"longitude\": -149.808422,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Elmendorf Air Force Base\",\n \"id\": \"arp_edf_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Anchorage\",\n \"iata_city_code\": \"ANC\",\n \"icao_code\": \"PAFR\",\n \"iata_code\": \"FRN\",\n \"latitude\": 61.264454,\n \"longitude\": -149.653852,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Bryant Army Heliport\",\n \"id\": \"arp_frn_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Anchorage\",\n \"iata_city_code\": \"ANC\",\n \"icao_code\": \"PAMR\",\n \"iata_code\": \"MRI\",\n \"latitude\": 61.214603,\n \"longitude\": -149.843405,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Merrill Field Airport\",\n \"id\": \"arp_mri_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ANC\",\n \"name\": \"Anchorage\",\n \"id\": \"cit_anc_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"TR\",\n \"city_name\": \"Ankara\",\n \"iata_city_code\": \"ANK\",\n \"icao_code\": \"LTAC\",\n \"iata_code\": \"ESB\",\n \"latitude\": 40.12627,\n \"longitude\": 32.993385,\n \"time_zone\": \"Europe/Istanbul\",\n \"name\": \"Esenboğa International Airport\",\n \"id\": \"arp_esb_tr\"\n },\n {\n \"iata_country_code\": \"TR\",\n \"city_name\": \"Ankara\",\n \"iata_city_code\": \"ANK\",\n \"icao_code\": \"LTAD\",\n \"iata_code\": \"ANK\",\n \"latitude\": 39.949798,\n \"longitude\": 32.688598,\n \"time_zone\": \"Europe/Istanbul\",\n \"name\": \"Etimesgut Air Base\",\n \"id\": \"arp_ank_tr\"\n }\n ],\n \"iata_country_code\": \"TR\",\n \"iata_code\": \"ANK\",\n \"name\": \"Ankara\",\n \"id\": \"cit_ank_tr\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"WS\",\n \"city_name\": \"Apia\",\n \"iata_city_code\": \"APW\",\n \"icao_code\": \"NSFI\",\n \"iata_code\": \"FGI\",\n \"latitude\": -13.84844,\n \"longitude\": -171.740968,\n \"time_zone\": \"Pacific/Apia\",\n \"name\": \"Fagali'i Airport\",\n \"id\": \"arp_fgi_ws\"\n },\n {\n \"iata_country_code\": \"WS\",\n \"city_name\": \"Apia\",\n \"iata_city_code\": \"APW\",\n \"icao_code\": \"NSFA\",\n \"iata_code\": \"APW\",\n \"latitude\": -13.830224,\n \"longitude\": -172.008052,\n \"time_zone\": \"Pacific/Apia\",\n \"name\": \"Faleolo International Airport\",\n \"id\": \"arp_apw_ws\"\n }\n ],\n \"iata_country_code\": \"WS\",\n \"iata_code\": \"APW\",\n \"name\": \"Apia\",\n \"id\": \"cit_apw_ws\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Ardmore\",\n \"iata_city_code\": \"ADM\",\n \"icao_code\": null,\n \"iata_code\": \"AHD\",\n \"latitude\": 34.146973,\n \"longitude\": -97.122742,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Ardmore Downtown Executive Airport\",\n \"id\": \"arp_ahd_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Ardmore\",\n \"iata_city_code\": \"ADM\",\n \"icao_code\": \"KADM\",\n \"iata_code\": \"ADM\",\n \"latitude\": 34.302418,\n \"longitude\": -97.021157,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Ardmore Municipal Airport\",\n \"id\": \"arp_adm_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ADM\",\n \"name\": \"Ardmore\",\n \"id\": \"cit_adm_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Atlanta\",\n \"iata_city_code\": \"ATL\",\n \"icao_code\": \"KPDK\",\n \"iata_code\": \"PDK\",\n \"latitude\": 33.875583,\n \"longitude\": -84.303619,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Dekalb Peachtree Airport\",\n \"id\": \"arp_pdk_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Atlanta\",\n \"iata_city_code\": \"ATL\",\n \"icao_code\": \"KFTY\",\n \"iata_code\": \"FTY\",\n \"latitude\": 33.777896,\n \"longitude\": -84.521638,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Fulton County Airport\",\n \"id\": \"arp_fty_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Atlanta\",\n \"iata_city_code\": \"ATL\",\n \"icao_code\": \"KATL\",\n \"iata_code\": \"ATL\",\n \"latitude\": 33.638714,\n \"longitude\": -84.4279,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Hartsfield-Jackson Atlanta International Airport\",\n \"id\": \"arp_atl_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ATL\",\n \"name\": \"Atlanta\",\n \"id\": \"cit_atl_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"NZ\",\n \"city_name\": \"Auckland\",\n \"iata_city_code\": \"AKL\",\n \"icao_code\": \"NZAA\",\n \"iata_code\": \"AKL\",\n \"latitude\": -37.008148,\n \"longitude\": 174.789684,\n \"time_zone\": \"Pacific/Auckland\",\n \"name\": \"Auckland Airport\",\n \"id\": \"arp_akl_nz\"\n }\n ],\n \"iata_country_code\": \"NZ\",\n \"iata_code\": \"AKL\",\n \"name\": \"Auckland\",\n \"id\": \"cit_akl_nz\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Augusta\",\n \"iata_city_code\": \"AGS\",\n \"icao_code\": \"KAGS\",\n \"iata_code\": \"AGS\",\n \"latitude\": 33.370604,\n \"longitude\": -81.96675,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Augusta Regional Airport\",\n \"id\": \"arp_ags_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Augusta\",\n \"iata_city_code\": \"AGS\",\n \"icao_code\": \"KDNL\",\n \"iata_code\": \"DNL\",\n \"latitude\": 33.466454,\n \"longitude\": -82.038534,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Daniel Field\",\n \"id\": \"arp_dnl_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"AGS\",\n \"name\": \"Augusta\",\n \"id\": \"cit_ags_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Austin\",\n \"iata_city_code\": \"AUS\",\n \"icao_code\": \"KAUS\",\n \"iata_code\": \"AUS\",\n \"latitude\": 30.196466,\n \"longitude\": -97.667519,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Austin-Bergstrom International Airport\",\n \"id\": \"arp_aus_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"AUS\",\n \"name\": \"Austin\",\n \"id\": \"cit_aus_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"AZ\",\n \"city_name\": \"Baku\",\n \"iata_city_code\": \"BAK\",\n \"icao_code\": \"UBBB\",\n \"iata_code\": \"GYD\",\n \"latitude\": 40.466321,\n \"longitude\": 50.049476,\n \"time_zone\": \"Asia/Baku\",\n \"name\": \"Heydar Aliyev International Airport\",\n \"id\": \"arp_gyd_az\"\n },\n {\n \"iata_country_code\": \"AZ\",\n \"city_name\": \"Baku\",\n \"iata_city_code\": \"BAK\",\n \"icao_code\": \"UBTT\",\n \"iata_code\": \"ZXT\",\n \"latitude\": 40.495968,\n \"longitude\": 49.97472,\n \"time_zone\": \"Asia/Baku\",\n \"name\": \"Zabrat Airport\",\n \"id\": \"arp_zxt_az\"\n }\n ],\n \"iata_country_code\": \"AZ\",\n \"iata_code\": \"BAK\",\n \"name\": \"Baku\",\n \"id\": \"cit_bak_az\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Baltimore\",\n \"iata_city_code\": \"BWI\",\n \"icao_code\": \"KBWI\",\n \"iata_code\": \"BWI\",\n \"latitude\": 39.176402,\n \"longitude\": -76.668345,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Baltimore Washington International Thurgood Marshall Airport\",\n \"id\": \"arp_bwi_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Baltimore\",\n \"iata_city_code\": \"BWI\",\n \"icao_code\": \"KMTN\",\n \"iata_code\": \"MTN\",\n \"latitude\": 39.326578,\n \"longitude\": -76.41708,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Martin State Airport\",\n \"id\": \"arp_mtn_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"BWI\",\n \"name\": \"Baltimore\",\n \"id\": \"cit_bwi_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"TH\",\n \"city_name\": \"Bangkok\",\n \"iata_city_code\": \"BKK\",\n \"icao_code\": \"VTBD\",\n \"iata_code\": \"DMK\",\n \"latitude\": 13.912929,\n \"longitude\": 100.6056,\n \"time_zone\": \"Asia/Bangkok\",\n \"name\": \"Don Mueang International Airport\",\n \"id\": \"arp_dmk_th\"\n },\n {\n \"iata_country_code\": \"TH\",\n \"city_name\": \"Bangkok\",\n \"iata_city_code\": \"BKK\",\n \"icao_code\": \"VTBS\",\n \"iata_code\": \"BKK\",\n \"latitude\": 13.691187,\n \"longitude\": 100.748128,\n \"time_zone\": \"Asia/Bangkok\",\n \"name\": \"Suvarnabhumi Airport\",\n \"id\": \"arp_bkk_th\"\n }\n ],\n \"iata_country_code\": \"TH\",\n \"iata_code\": \"BKK\",\n \"name\": \"Bangkok\",\n \"id\": \"cit_bkk_th\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"FR\",\n \"city_name\": null,\n \"iata_city_code\": \"EAP\",\n \"icao_code\": \"LFSB\",\n \"iata_code\": \"BSL\",\n \"latitude\": 47.59409,\n \"longitude\": 7.527331,\n \"time_zone\": \"Europe/Paris\",\n \"name\": \"EuroAirport Basel-Mulhouse-Freiburg\",\n \"id\": \"arp_bsl_ch\"\n },\n {\n \"iata_country_code\": \"FR\",\n \"city_name\": \"Mulhouse/Basel\",\n \"iata_city_code\": \"EAP\",\n \"icao_code\": \"LFSB\",\n \"iata_code\": \"MLH\",\n \"latitude\": 47.59818,\n \"longitude\": 7.525496,\n \"time_zone\": \"Europe/Paris\",\n \"name\": \"EuroAirport Basel Mulhouse Freiburg\",\n \"id\": \"arp_mlh_fr\"\n },\n {\n \"iata_country_code\": \"FR\",\n \"city_name\": \"Basel\",\n \"iata_city_code\": \"EAP\",\n \"icao_code\": \"LFSB\",\n \"iata_code\": \"BSL\",\n \"latitude\": 47.59409,\n \"longitude\": 7.52733,\n \"time_zone\": \"Europe/Paris\",\n \"name\": \"EuroAirport Basel-Mulhouse-Freiburg\",\n \"id\": \"arp_bsl_fr\"\n }\n ],\n \"iata_country_code\": \"CH\",\n \"iata_code\": \"EAP\",\n \"name\": \"Basel/Mulhouse\",\n \"id\": \"cit_eap_ch\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Beaumont\",\n \"iata_city_code\": \"BPT\",\n \"icao_code\": \"KBPT\",\n \"iata_code\": \"BPT\",\n \"latitude\": 29.95207,\n \"longitude\": -94.021041,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Jack Brooks Regional Airport\",\n \"id\": \"arp_bpt_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Beaumont\",\n \"iata_city_code\": \"BPT\",\n \"icao_code\": \"KBMT\",\n \"iata_code\": \"BMT\",\n \"latitude\": 30.07052,\n \"longitude\": -94.213826,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Beaumont Municipal Airport\",\n \"id\": \"arp_bmt_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"BPT\",\n \"name\": \"Beaumont/Port Arthur\",\n \"id\": \"cit_bpt_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"CN\",\n \"city_name\": \"Beijing\",\n \"iata_city_code\": \"BJS\",\n \"icao_code\": \"ZBAA\",\n \"iata_code\": \"PEK\",\n \"latitude\": 40.080613,\n \"longitude\": 116.602404,\n \"time_zone\": \"Asia/Shanghai\",\n \"name\": \"Beijing Capital International Airport\",\n \"id\": \"arp_pek_cn\"\n },\n {\n \"iata_country_code\": \"CN\",\n \"city_name\": \"Beijing\",\n \"iata_city_code\": \"BJS\",\n \"icao_code\": \"ZBNY\",\n \"iata_code\": \"NAY\",\n \"latitude\": 39.782699,\n \"longitude\": 116.387926,\n \"time_zone\": \"Asia/Shanghai\",\n \"name\": \"Beijing Nanyuan Airport\",\n \"id\": \"arp_nay_cn\"\n },\n {\n \"iata_country_code\": \"CN\",\n \"city_name\": \"Beijing\",\n \"iata_city_code\": \"BJS\",\n \"icao_code\": \"ZBAD\",\n \"iata_code\": \"PKX\",\n \"latitude\": 39.509945,\n \"longitude\": 116.41092,\n \"time_zone\": \"Asia/Shanghai\",\n \"name\": \"Beijing Daxing International Airport\",\n \"id\": \"arp_pkx_cn\"\n }\n ],\n \"iata_country_code\": \"CN\",\n \"iata_code\": \"BJS\",\n \"name\": \"Beijing\",\n \"id\": \"cit_bjs_cn\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"GB\",\n \"city_name\": \"Belfast\",\n \"iata_city_code\": \"BFS\",\n \"icao_code\": \"EGAA\",\n \"iata_code\": \"BFS\",\n \"latitude\": 54.658279,\n \"longitude\": -6.217177,\n \"time_zone\": \"Europe/London\",\n \"name\": \"Belfast International Airport\",\n \"id\": \"arp_bfs_gb\"\n },\n {\n \"iata_country_code\": \"GB\",\n \"city_name\": \"Belfast\",\n \"iata_city_code\": \"BFS\",\n \"icao_code\": \"EGAC\",\n \"iata_code\": \"BHD\",\n \"latitude\": 54.617857,\n \"longitude\": -5.872165,\n \"time_zone\": \"Europe/London\",\n \"name\": \"George Best Belfast City Airport\",\n \"id\": \"arp_bhd_gb\"\n }\n ],\n \"iata_country_code\": \"GB\",\n \"iata_code\": \"BFS\",\n \"name\": \"Belfast\",\n \"id\": \"cit_bfs_gb\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"RS\",\n \"city_name\": \"Batajnica\",\n \"iata_city_code\": \"BEG\",\n \"icao_code\": \"LYBT\",\n \"iata_code\": \"BJY\",\n \"latitude\": 44.935079,\n \"longitude\": 20.257138,\n \"time_zone\": \"Europe/Belgrade\",\n \"name\": \"Batajnica Air Base\",\n \"id\": \"arp_bjy_rs\"\n },\n {\n \"iata_country_code\": \"RS\",\n \"city_name\": \"Belgrade\",\n \"iata_city_code\": \"BEG\",\n \"icao_code\": \"LYBE\",\n \"iata_code\": \"BEG\",\n \"latitude\": 44.820559,\n \"longitude\": 20.292378,\n \"time_zone\": \"Europe/Belgrade\",\n \"name\": \"Belgrade Nikola Tesla Airport\",\n \"id\": \"arp_beg_rs\"\n }\n ],\n \"iata_country_code\": \"RS\",\n \"iata_code\": \"BEG\",\n \"name\": \"Belgrade\",\n \"id\": \"cit_beg_rs\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"BZ\",\n \"city_name\": \"Belize City\",\n \"iata_city_code\": \"BZE\",\n \"icao_code\": \"MZBZ\",\n \"iata_code\": \"BZE\",\n \"latitude\": 17.537595,\n \"longitude\": -88.308539,\n \"time_zone\": \"America/Belize\",\n \"name\": \"Philip S. W. Goldson International Airport\",\n \"id\": \"arp_bze_bz\"\n },\n {\n \"iata_country_code\": \"BZ\",\n \"city_name\": \"Belize City\",\n \"iata_city_code\": \"BZE\",\n \"icao_code\": null,\n \"iata_code\": \"TZA\",\n \"latitude\": 17.516191,\n \"longitude\": -88.194597,\n \"time_zone\": \"America/Belize\",\n \"name\": \"Belize City Municipal Airport\",\n \"id\": \"arp_tza_bz\"\n }\n ],\n \"iata_country_code\": \"BZ\",\n \"iata_code\": \"BZE\",\n \"name\": \"Belize City\",\n \"id\": \"cit_bze_bz\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"BR\",\n \"city_name\": \"Belo Horizonte\",\n \"iata_city_code\": \"BHZ\",\n \"icao_code\": \"SBBH\",\n \"iata_code\": \"PLU\",\n \"latitude\": -19.850524,\n \"longitude\": -43.952745,\n \"time_zone\": \"America/Sao_Paulo\",\n \"name\": \"Pierce County Airport\",\n \"id\": \"arp_plu_br\"\n },\n {\n \"iata_country_code\": \"BR\",\n \"city_name\": \"Belo Horizonte\",\n \"iata_city_code\": \"BHZ\",\n \"icao_code\": \"SBCF\",\n \"iata_code\": \"CNF\",\n \"latitude\": -19.634271,\n \"longitude\": -43.964763,\n \"time_zone\": \"America/Sao_Paulo\",\n \"name\": \"Tancredo Neves International Airport\",\n \"id\": \"arp_cnf_br\"\n }\n ],\n \"iata_country_code\": \"BR\",\n \"iata_code\": \"BHZ\",\n \"name\": \"Belo Horizonte\",\n \"id\": \"cit_bhz_br\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"DE\",\n \"city_name\": \"Berlin\",\n \"iata_city_code\": \"BER\",\n \"icao_code\": null,\n \"iata_code\": \"BER\",\n \"latitude\": 52.362307,\n \"longitude\": 13.504906,\n \"time_zone\": \"Europe/Berlin\",\n \"name\": \"Berlin Brandenburg Airport\",\n \"id\": \"arp_ber_de\"\n },\n {\n \"iata_country_code\": \"DE\",\n \"city_name\": \"Berlin\",\n \"iata_city_code\": \"BER\",\n \"icao_code\": \"EDDB\",\n \"iata_code\": \"SXF\",\n \"latitude\": 52.381814,\n \"longitude\": 13.522205,\n \"time_zone\": \"Europe/Berlin\",\n \"name\": \"Berlin-Schönefeld Airport\",\n \"id\": \"arp_sxf_de\"\n },\n {\n \"iata_country_code\": \"DE\",\n \"city_name\": \"Berlin\",\n \"iata_city_code\": \"BER\",\n \"icao_code\": \"EDDT\",\n \"iata_code\": \"TXL\",\n \"latitude\": 52.558044,\n \"longitude\": 13.288889,\n \"time_zone\": \"Europe/Berlin\",\n \"name\": \"Berlin Tegel Airport\",\n \"id\": \"arp_txl_de\"\n }\n ],\n \"iata_country_code\": \"DE\",\n \"iata_code\": \"BER\",\n \"name\": \"Berlin\",\n \"id\": \"cit_ber_de\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Bethel\",\n \"iata_city_code\": \"BET\",\n \"icao_code\": \"PABE\",\n \"iata_code\": \"BET\",\n \"latitude\": 60.779761,\n \"longitude\": -161.837887,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Bethel Airport\",\n \"id\": \"arp_bet_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Bethel\",\n \"iata_city_code\": \"BET\",\n \"icao_code\": \"PABE\",\n \"iata_code\": \"JBT\",\n \"latitude\": 60.782013,\n \"longitude\": -161.743063,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Bethel Seaplane Base\",\n \"id\": \"arp_jbt_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"BET\",\n \"name\": \"Bethel\",\n \"id\": \"cit_bet_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Blytheville\",\n \"iata_city_code\": \"BYH\",\n \"icao_code\": \"KHKA\",\n \"iata_code\": \"HKA\",\n \"latitude\": 35.93796,\n \"longitude\": -89.83193,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Blytheville Municipal Airport\",\n \"id\": \"arp_hka_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Blytheville\",\n \"iata_city_code\": \"BYH\",\n \"icao_code\": \"KBYH\",\n \"iata_code\": \"BYH\",\n \"latitude\": 35.962747,\n \"longitude\": -89.94529,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Arkansas International Airport\",\n \"id\": \"arp_byh_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"BYH\",\n \"name\": \"Blytheville\",\n \"id\": \"cit_byh_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Boston\",\n \"iata_city_code\": \"BOS\",\n \"icao_code\": \"KBOS\",\n \"iata_code\": \"BOS\",\n \"latitude\": 42.364956,\n \"longitude\": -71.007381,\n \"time_zone\": \"America/New_York\",\n \"name\": \"General Edward Lawrence Logan International Airport\",\n \"id\": \"arp_bos_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Boston\",\n \"iata_city_code\": \"BOS\",\n \"icao_code\": null,\n \"iata_code\": \"BNH\",\n \"latitude\": 42.352509,\n \"longitude\": -71.025732,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Boston Harbor Seaplane Base\",\n \"id\": \"arp_bnh_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Portsmouth\",\n \"iata_city_code\": \"BOS\",\n \"icao_code\": \"KPSM\",\n \"iata_code\": \"PSM\",\n \"latitude\": 43.079053,\n \"longitude\": -70.822681,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Portsmouth International Airport\",\n \"id\": \"arp_psm_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"BOS\",\n \"name\": \"Boston\",\n \"id\": \"cit_bos_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Brunswick\",\n \"iata_city_code\": \"SSI\",\n \"icao_code\": \"KBQK\",\n \"iata_code\": \"BQK\",\n \"latitude\": 31.256802,\n \"longitude\": -81.466759,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Brunswick Golden Isles Airport\",\n \"id\": \"arp_bqk_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Brunswick\",\n \"iata_city_code\": \"SSI\",\n \"icao_code\": \"KSSI\",\n \"iata_code\": \"SSI\",\n \"latitude\": 31.152689,\n \"longitude\": -81.390179,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Malcolm McKinnon Airport\",\n \"id\": \"arp_ssi_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"SSI\",\n \"name\": \"Brunswick\",\n \"id\": \"cit_ssi_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"BE\",\n \"city_name\": \"Brussels\",\n \"iata_city_code\": \"BRU\",\n \"icao_code\": \"EBCI\",\n \"iata_code\": \"CRL\",\n \"latitude\": 50.46129,\n \"longitude\": 4.457859,\n \"time_zone\": \"Europe/Brussels\",\n \"name\": \"Brussels South Charleroi Airport\",\n \"id\": \"arp_crl_be\"\n },\n {\n \"iata_country_code\": \"BE\",\n \"city_name\": \"Brussels\",\n \"iata_city_code\": \"BRU\",\n \"icao_code\": \"EBBR\",\n \"iata_code\": \"BRU\",\n \"latitude\": 50.90042,\n \"longitude\": 4.484052,\n \"time_zone\": \"Europe/Brussels\",\n \"name\": \"Brussels Airport\",\n \"id\": \"arp_bru_be\"\n }\n ],\n \"iata_country_code\": \"BE\",\n \"iata_code\": \"BRU\",\n \"name\": \"Brussels\",\n \"id\": \"cit_bru_be\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"RO\",\n \"city_name\": \"Bucharest\",\n \"iata_city_code\": \"BUH\",\n \"icao_code\": \"LRBS\",\n \"iata_code\": \"BBU\",\n \"latitude\": 44.502897,\n \"longitude\": 26.101912,\n \"time_zone\": \"Europe/Bucharest\",\n \"name\": \"Băneasa International Airport\",\n \"id\": \"arp_bbu_ro\"\n },\n {\n \"iata_country_code\": \"RO\",\n \"city_name\": \"Bucharest\",\n \"iata_city_code\": \"BUH\",\n \"icao_code\": \"LROP\",\n \"iata_code\": \"OTP\",\n \"latitude\": 44.57092,\n \"longitude\": 26.084706,\n \"time_zone\": \"Europe/Bucharest\",\n \"name\": \"Henri Coandă International Airport\",\n \"id\": \"arp_otp_ro\"\n }\n ],\n \"iata_country_code\": \"RO\",\n \"iata_code\": \"BUH\",\n \"name\": \"Bucharest\",\n \"id\": \"cit_buh_ro\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"AR\",\n \"city_name\": \"Buenos Aires\",\n \"iata_city_code\": \"BUE\",\n \"icao_code\": \"SABE\",\n \"iata_code\": \"AEP\",\n \"latitude\": -34.558615,\n \"longitude\": -58.416304,\n \"time_zone\": \"America/Argentina/Buenos_Aires\",\n \"name\": \"Jorge Newbery Airfield\",\n \"id\": \"arp_aep_ar\"\n },\n {\n \"iata_country_code\": \"AR\",\n \"city_name\": \"Buenos Aires\",\n \"iata_city_code\": \"BUE\",\n \"icao_code\": \"SAEZ\",\n \"iata_code\": \"EZE\",\n \"latitude\": -34.818602,\n \"longitude\": -58.535314,\n \"time_zone\": \"America/Argentina/Buenos_Aires\",\n \"name\": \"Ministro Pistarini International Airport\",\n \"id\": \"arp_eze_ar\"\n }\n ],\n \"iata_country_code\": \"AR\",\n \"iata_code\": \"BUE\",\n \"name\": \"Buenos Aires\",\n \"id\": \"cit_bue_ar\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"GP\",\n \"city_name\": null,\n \"iata_city_code\": \"CAI\",\n \"icao_code\": null,\n \"iata_code\": \"CCE\",\n \"latitude\": 18.100423,\n \"longitude\": -63.049779,\n \"time_zone\": \"America/Marigot\",\n \"name\": \"Grand Case-Espérance Airport\",\n \"id\": \"arp_cce_eg\"\n },\n {\n \"iata_country_code\": \"GP\",\n \"city_name\": \"Cairo\",\n \"iata_city_code\": \"CAI\",\n \"icao_code\": null,\n \"iata_code\": \"CCE\",\n \"latitude\": 18.100423,\n \"longitude\": -63.049779,\n \"time_zone\": \"America/Marigot\",\n \"name\": \"Grand Case-Espérance Airport\",\n \"id\": \"arp_cce_gp\"\n },\n {\n \"iata_country_code\": \"EG\",\n \"city_name\": \"Cairo\",\n \"iata_city_code\": \"CAI\",\n \"icao_code\": \"HECA\",\n \"iata_code\": \"CAI\",\n \"latitude\": 30.121954,\n \"longitude\": 31.40751,\n \"time_zone\": \"Africa/Cairo\",\n \"name\": \"Cairo International Airport\",\n \"id\": \"arp_cai_eg\"\n }\n ],\n \"iata_country_code\": \"EG\",\n \"iata_code\": \"CAI\",\n \"name\": \"Cairo\",\n \"id\": \"cit_cai_eg\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"CA\",\n \"city_name\": \"Campbell River\",\n \"iata_city_code\": \"YBL\",\n \"icao_code\": null,\n \"iata_code\": \"YHH\",\n \"latitude\": 49.949302,\n \"longitude\": -125.269567,\n \"time_zone\": \"America/Vancouver\",\n \"name\": \"Campbell River Harbour Airport\",\n \"id\": \"arp_yhh_ca\"\n },\n {\n \"iata_country_code\": \"CA\",\n \"city_name\": \"Campbell River\",\n \"iata_city_code\": \"YBL\",\n \"icao_code\": \"CYBL\",\n \"iata_code\": \"YBL\",\n \"latitude\": 49.951375,\n \"longitude\": -125.270212,\n \"time_zone\": \"America/Vancouver\",\n \"name\": \"Campbell River Airport\",\n \"id\": \"arp_ybl_ca\"\n }\n ],\n \"iata_country_code\": \"CA\",\n \"iata_code\": \"YBL\",\n \"name\": \"Campbell River\",\n \"id\": \"cit_ybl_ca\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"FR\",\n \"city_name\": \"Cannes\",\n \"iata_city_code\": \"CEQ\",\n \"icao_code\": \"LFMD\",\n \"iata_code\": \"CEQ\",\n \"latitude\": 43.544633,\n \"longitude\": 6.953192,\n \"time_zone\": \"Europe/Paris\",\n \"name\": \"Cannes – Mandelieu Airport\",\n \"id\": \"arp_ceq_fr\"\n }\n ],\n \"iata_country_code\": \"FR\",\n \"iata_code\": \"CEQ\",\n \"name\": \"Cannes\",\n \"id\": \"cit_ceq_fr\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"MA\",\n \"city_name\": \"Casablanca\",\n \"iata_city_code\": \"CAS\",\n \"icao_code\": \"GMMN\",\n \"iata_code\": \"CMN\",\n \"latitude\": 33.366389,\n \"longitude\": -7.587202,\n \"time_zone\": \"Africa/Casablanca\",\n \"name\": \"Mohammed V International Airport\",\n \"id\": \"arp_cmn_ma\"\n },\n {\n \"iata_country_code\": \"MA\",\n \"city_name\": \"Casablanca\",\n \"iata_city_code\": \"CAS\",\n \"icao_code\": \"GMMC\",\n \"iata_code\": \"CAS\",\n \"latitude\": 33.554704,\n \"longitude\": -7.661528,\n \"time_zone\": \"Africa/Casablanca\",\n \"name\": \"Anfa Airport\",\n \"id\": \"arp_cas_ma\"\n }\n ],\n \"iata_country_code\": \"MA\",\n \"iata_code\": \"CAS\",\n \"name\": \"Casablanca\",\n \"id\": \"cit_cas_ma\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Charlotte\",\n \"iata_city_code\": \"CLT\",\n \"icao_code\": null,\n \"iata_code\": \"QWG\",\n \"latitude\": 35.212095,\n \"longitude\": -80.669294,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Wilgrove Air Park\",\n \"id\": \"arp_qwg_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Charlotte\",\n \"iata_city_code\": \"CLT\",\n \"icao_code\": \"KCLT\",\n \"iata_code\": \"CLT\",\n \"latitude\": 35.214201,\n \"longitude\": -80.945207,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Charlotte Douglas International Airport\",\n \"id\": \"arp_clt_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"CLT\",\n \"name\": \"Charlotte\",\n \"id\": \"cit_clt_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Cheyenne\",\n \"iata_city_code\": \"CYS\",\n \"icao_code\": \"KCYS\",\n \"iata_code\": \"CYS\",\n \"latitude\": 41.154498,\n \"longitude\": -104.81374,\n \"time_zone\": \"America/Denver\",\n \"name\": \"Cheyenne Regional Airport\",\n \"id\": \"arp_cys_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"CYS\",\n \"name\": \"Cheyenne\",\n \"id\": \"cit_cys_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Chicago\",\n \"iata_city_code\": \"CHI\",\n \"icao_code\": \"KDPA\",\n \"iata_code\": \"DPA\",\n \"latitude\": 41.907279,\n \"longitude\": -88.25084,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"DuPage Airport\",\n \"id\": \"arp_dpa_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Chicago\",\n \"iata_city_code\": \"CHI\",\n \"icao_code\": \"KPWK\",\n \"iata_code\": \"PWK\",\n \"latitude\": 42.11582,\n \"longitude\": -87.901879,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Chicago Executive Airport\",\n \"id\": \"arp_pwk_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Chicago\",\n \"iata_city_code\": \"CHI\",\n \"icao_code\": \"KMDW\",\n \"iata_code\": \"MDW\",\n \"latitude\": 41.786336,\n \"longitude\": -87.750029,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Chicago Midway International Airport\",\n \"id\": \"arp_mdw_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Chicago\",\n \"iata_city_code\": \"CHI\",\n \"icao_code\": \"KORD\",\n \"iata_code\": \"ORD\",\n \"latitude\": 41.976381,\n \"longitude\": -87.90606,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"O'Hare International Airport\",\n \"id\": \"arp_ord_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Chicago\",\n \"iata_city_code\": \"CHI\",\n \"icao_code\": \"KRFD\",\n \"iata_code\": \"RFD\",\n \"latitude\": 42.19732,\n \"longitude\": -89.097969,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Chicago Rockford International Airport\",\n \"id\": \"arp_rfd_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"CHI\",\n \"name\": \"Chicago\",\n \"id\": \"cit_chi_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Chignik\",\n \"iata_city_code\": \"KCL\",\n \"icao_code\": null,\n \"iata_code\": \"KBW\",\n \"latitude\": 56.295608,\n \"longitude\": -158.40132,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Chignik Bay Airport\",\n \"id\": \"arp_kbw_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Chignik Lake\",\n \"iata_city_code\": \"KCL\",\n \"icao_code\": null,\n \"iata_code\": \"KCQ\",\n \"latitude\": 56.254971,\n \"longitude\": -158.772529,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Chignik Lake Airport\",\n \"id\": \"arp_kcq_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Chignik\",\n \"iata_city_code\": \"KCL\",\n \"icao_code\": \"PAJC\",\n \"iata_code\": \"KCG\",\n \"latitude\": 56.310832,\n \"longitude\": -158.373611,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Chignik Fisheries Airport\",\n \"id\": \"arp_kcg_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Chignik\",\n \"iata_city_code\": \"KCL\",\n \"icao_code\": \"PAJC\",\n \"iata_code\": \"KCL\",\n \"latitude\": 56.311175,\n \"longitude\": -158.535949,\n \"time_zone\": \"America/Anchorage\",\n \"name\": \"Chignik Lagoon Airport\",\n \"id\": \"arp_kcl_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"KCL\",\n \"name\": \"Chignik\",\n \"id\": \"cit_kcl_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Cincinnati\",\n \"iata_city_code\": \"CVG\",\n \"icao_code\": \"KLUK\",\n \"iata_code\": \"LUK\",\n \"latitude\": 39.103433,\n \"longitude\": -84.421367,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Cincinnati Municipal Airport\",\n \"id\": \"arp_luk_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Cincinnati\",\n \"iata_city_code\": \"CVG\",\n \"icao_code\": \"KCVG\",\n \"iata_code\": \"CVG\",\n \"latitude\": 39.051038,\n \"longitude\": -84.665409,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Cincinnati/Northern Kentucky International Airport\",\n \"id\": \"arp_cvg_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"CVG\",\n \"name\": \"Cincinnati\",\n \"id\": \"cit_cvg_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Cleveland\",\n \"iata_city_code\": \"CLE\",\n \"icao_code\": \"KCLE\",\n \"iata_code\": \"CLE\",\n \"latitude\": 41.410408,\n \"longitude\": -81.850364,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Cleveland Hopkins International Airport\",\n \"id\": \"arp_cle_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Cleveland\",\n \"iata_city_code\": \"CLE\",\n \"icao_code\": \"KCGF\",\n \"iata_code\": \"CGF\",\n \"latitude\": 41.565789,\n \"longitude\": -81.487719,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Cuyahoga County Airport\",\n \"id\": \"arp_cgf_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Cleveland\",\n \"iata_city_code\": \"CLE\",\n \"icao_code\": \"KBKL\",\n \"iata_code\": \"BKL\",\n \"latitude\": 41.514519,\n \"longitude\": -81.686615,\n \"time_zone\": \"America/New_York\",\n \"name\": \"Cleveland Burke Lakefront Airport\",\n \"id\": \"arp_bkl_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"CLE\",\n \"name\": \"Cleveland\",\n \"id\": \"cit_cle_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Clinton\",\n \"iata_city_code\": \"CSM\",\n \"icao_code\": \"KCLK\",\n \"iata_code\": \"CLK\",\n \"latitude\": 35.538317,\n \"longitude\": -98.932739,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Clinton Regional Airport\",\n \"id\": \"arp_clk_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Clinton\",\n \"iata_city_code\": \"CSM\",\n \"icao_code\": \"KCSM\",\n \"iata_code\": \"CSM\",\n \"latitude\": 35.347016,\n \"longitude\": -99.198301,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Clinton Sherman Airport\",\n \"id\": \"arp_csm_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"CSM\",\n \"name\": \"Clinton\",\n \"id\": \"cit_csm_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Clovis\",\n \"iata_city_code\": \"CVN\",\n \"icao_code\": \"KCVS\",\n \"iata_code\": \"CVS\",\n \"latitude\": 34.385129,\n \"longitude\": -103.320767,\n \"time_zone\": \"America/Denver\",\n \"name\": \"Cannon Air Force Base\",\n \"id\": \"arp_cvs_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Clovis\",\n \"iata_city_code\": \"CVN\",\n \"icao_code\": \"KCVN\",\n \"iata_code\": \"CVN\",\n \"latitude\": 34.425868,\n \"longitude\": -103.078707,\n \"time_zone\": \"America/Denver\",\n \"name\": \"Clovis Municipal Airport\",\n \"id\": \"arp_cvn_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"CVN\",\n \"name\": \"Clovis\",\n \"id\": \"cit_cvn_us\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"LK\",\n \"city_name\": \"Colombo\",\n \"iata_city_code\": \"CMB\",\n \"icao_code\": null,\n \"iata_code\": \"DGM\",\n \"latitude\": 7.1079,\n \"longitude\": 79.8721,\n \"time_zone\": \"Asia/Colombo\",\n \"name\": \"Dandugama Seaplane Base\",\n \"id\": \"arp_dgm_lk\"\n },\n {\n \"iata_country_code\": \"LK\",\n \"city_name\": \"Colombo\",\n \"iata_city_code\": \"CMB\",\n \"icao_code\": null,\n \"iata_code\": \"BYV\",\n \"latitude\": 6.92883,\n \"longitude\": 79.854596,\n \"time_zone\": \"Asia/Colombo\",\n \"name\": \"Beira Lake Seaplane Base Airport\",\n \"id\": \"arp_byv_lk\"\n },\n {\n \"iata_country_code\": \"LK\",\n \"city_name\": \"Colombo\",\n \"iata_city_code\": \"CMB\",\n \"icao_code\": \"VCCC\",\n \"iata_code\": \"RML\",\n \"latitude\": 6.822141,\n \"longitude\": 79.88773,\n \"time_zone\": \"Asia/Colombo\",\n \"name\": \"Ratmalana Airport\",\n \"id\": \"arp_rml_lk\"\n },\n {\n \"iata_country_code\": \"LK\",\n \"city_name\": \"Colombo\",\n \"iata_city_code\": \"CMB\",\n \"icao_code\": \"VCBI\",\n \"iata_code\": \"CMB\",\n \"latitude\": 7.180457,\n \"longitude\": 79.884176,\n \"time_zone\": \"Asia/Colombo\",\n \"name\": \"Bandaranaike International Airport\",\n \"id\": \"arp_cmb_lk\"\n },\n {\n \"iata_country_code\": \"LK\",\n \"city_name\": \"Colombo\",\n \"iata_city_code\": \"CMB\",\n \"icao_code\": null,\n \"iata_code\": \"KEZ\",\n \"latitude\": 6.85,\n \"longitude\": 80.55,\n \"time_zone\": \"Asia/Colombo\",\n \"name\": \"Kelaniya River Airport\",\n \"id\": \"arp_kez_lk\"\n }\n ],\n \"iata_country_code\": \"LK\",\n \"iata_code\": \"CMB\",\n \"name\": \"Colombo\",\n \"id\": \"cit_cmb_lk\"\n },\n {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Colorado Springs\",\n \"iata_city_code\": \"COS\",\n \"icao_code\": \"KAFF\",\n \"iata_code\": \"AFF\",\n \"latitude\": 38.970442,\n \"longitude\": -104.814704,\n \"time_zone\": \"America/Denver\",\n \"name\": \"United States Air Force Academy Airfield\",\n \"id\": \"arp_aff_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Colorado Springs\",\n \"iata_city_code\": \"COS\",\n \"icao_code\": \"KFCS\",\n \"iata_code\": \"FCS\",\n \"latitude\": 38.678398,\n \"longitude\": -104.757004,\n \"time_zone\": \"America/Denver\",\n \"name\": \"Butts Army Airfield\",\n \"id\": \"arp_fcs_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Colorado Springs\",\n \"iata_city_code\": \"COS\",\n \"icao_code\": \"KCOS\",\n \"iata_code\": \"COS\",\n \"latitude\": 38.803756,\n \"longitude\": -104.701799,\n \"time_zone\": \"America/Denver\",\n \"name\": \"Colorado Springs Airport\",\n \"id\": \"arp_cos_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"COS\",\n \"name\": \"Colorado Springs\",\n \"id\": \"cit_cos_us\"\n }\n ]\n}"
}
]
},
{
"name": "single city airport",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/airports/arp_auh_ae",
"host": ["{{url}}"],
"path": ["api", "v1", "airports", "arp_auh_ae"]
}
},
"response": [
{
"name": "single airport",
"originalRequest": {
"method": "GET",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/cities/cit_abi_us",
"host": ["{{url}}"],
"path": ["api", "v1", "cities", "cit_abi_us"]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "X-Powered-By",
"value": "Express"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "567"
},
{
"key": "ETag",
"value": "W/\"237-O//W318W3fQ+Qr1kA9yxcdb/iqI\""
},
{
"key": "Date",
"value": "Sun, 28 Apr 2024 07:20:55 GMT"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Keep-Alive",
"value": "timeout=5"
}
],
"cookie": [],
"body": "{\n \"data\": {\n \"airports\": [\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Abilene\",\n \"iata_city_code\": \"ABI\",\n \"icao_code\": \"KDYS\",\n \"iata_code\": \"DYS\",\n \"latitude\": 32.420799,\n \"longitude\": -99.854599,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Dyess Air Force Base\",\n \"id\": \"arp_dys_us\"\n },\n {\n \"iata_country_code\": \"US\",\n \"city_name\": \"Abilene\",\n \"iata_city_code\": \"ABI\",\n \"icao_code\": \"KABI\",\n \"iata_code\": \"ABI\",\n \"latitude\": 32.411237,\n \"longitude\": -99.681822,\n \"time_zone\": \"America/Chicago\",\n \"name\": \"Abilene Regional Airport\",\n \"id\": \"arp_abi_us\"\n }\n ],\n \"iata_country_code\": \"US\",\n \"iata_code\": \"ABI\",\n \"name\": \"Abilene\",\n \"id\": \"cit_abi_us\"\n }\n}"
}
]
}
]
},
{
"name": "Countries",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/api/v1/locations/country",
"host": ["{{url}}"],
"path": ["api", "v1", "locations", "country"]
}
},
"response": []
},
{
"name": "states",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/api/v1/locations/state/1",
"host": ["{{url}}"],
"path": ["api", "v1", "locations", "state", "1"]
}
},
"response": []
},
{
"name": "cities",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/api/v1/locations/city/1",
"host": ["{{url}}"],
"path": ["api", "v1", "locations", "city", "1"]
}
},
"response": []
},
{
"name": "details",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/api/v1/details",
"host": ["{{url}}"],
"path": ["api", "v1", "details"]
}
},
"response": []
},
{
"name": "details",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"test user 5\",\n \"description\": \"test 45\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/details",
"host": ["{{url}}"],
"path": ["api", "v1", "details"]
}
},
"response": []
},
{
"name": "update Details",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"name is required\",\n \"description\": \"description is required\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/api/v1/details/1",
"host": ["{{url}}"],
"path": ["api", "v1", "details", "1"]
}
},
"response": []
},
{
"name": "delete",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "DELETE",
"header": [],
"url": {
"raw": "{{url}}/api/v1/details/3",
"host": ["{{url}}"],
"path": ["api", "v1", "details", "3"]
}
},
"response": []
},
{
"name": "find single detail",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [],
"url": {
"raw": "{{url}}/api/v1/details/3",
"host": ["{{url}}"],
"path": ["api", "v1", "details", "3"]
}
},
"response": []
}
]
}