-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathDivar-Kenar.postman_collection.json
2498 lines (2498 loc) · 489 KB
/
Divar-Kenar.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
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"info": {
"_postman_id": "63e0c343-7473-4922-8ccc-0de40ad82310",
"name": "Divar/Kenar",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "11788929"
},
"item": [
{
"name": "Finder",
"item": [
{
"name": "Find Post",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"city\": \"tehran\",\n \"category\": \"light\",\n \"query\": {\n \"brand_model\": {\n \"value\": [\"Pride 111 EX\"]\n },\n \"production-year\": {\n \"min\": 1385,\n \"max\": 1390\n },\n \"usage\": {\n \"max\": 200000\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{host}}/v1/open-platform/finder/post",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"finder",
"post"
]
},
"description": "دریافت فهرستی از آگهیها بر اساس فیلترهای ارسالی"
},
"response": [
{
"name": "Find Post",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"city\": \"tehran\",\n \"category\": \"light\",\n \"query\": {\n \"brand_model\": {\n \"value\": [\"Pride 111 EX\"]\n },\n \"production-year\": {\n \"min\": 1385,\n \"max\": 1390\n },\n \"usage\": {\n \"max\": 200000\n }\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{host}}/v1/open-platform/finder/post",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"finder",
"post"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Sun, 09 Jul 2023 11:55:06 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Grpcgateway-Content-Type",
"value": "application/grpc"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "Access-Control-Allow-Credentials",
"value": "true"
},
{
"key": "Access-Control-Expose-Headers",
"value": "X-JWT-REFRESH, X-JWT-ERROR"
},
{
"key": "X-Datacenter",
"value": "afra"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "X-ZRK-US",
"value": "200"
},
{
"key": "Server",
"value": "Delivery"
},
{
"key": "X-ZRK-SN",
"value": "1034"
},
{
"key": "Accept-Ranges",
"value": "bytes"
}
],
"cookie": [],
"body": "{\n \"posts\": [\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-07-09T13:55:42.185037\",\n \"post_data\": {\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نقره\\u200cای\",\n \"description\": \"سلام کاپوت گلگیر و دوتا در سمت راننده تعویض گلیگیر سمت راننده رنگ می\\u200cباشد سقف و ستون پلمپ کولر یخ یخ فنی سالم سالمه ۱سال بیشترع ماشین دستمه همه موتوری نو هست بیمه۷ماه داره لاستیک ۸۰ \\nماشین تمیزیه فرمون هیدرولیک نیس ظبطم داره سونی \\nتخفیف پایع معامله فقط زنگ اس و چت جواب داده نمیشه بازدید اسلامشهر\",\n \"fuel_type\": \"benzine\",\n \"images\": [\n \"/pictures/AZouISWL.jpg\",\n \"/pictures/AZouISWL.1.jpg\",\n \"/pictures/AZouISWL.2.jpg\",\n \"/pictures/AZouISWL.3.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 167000000\n },\n \"production-year\": 1389,\n \"title\": \"پراید 111 EX، مدل ۱۳۸۹\",\n \"usage\": 191000\n },\n \"token\": \"AZouISWL\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-07-09T01:53:04.617089\",\n \"post_data\": {\n \"body_status\": \"intact\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نوک\\u200cمدادی\",\n \"description\": \"پراید 111 خیلی تمیز رخ مدل 97. دزدگیر. روکش . کولر یخ یخ . معاینه فنی. لاستیک ها نو. . مدارک کامل آماده انتقال. اسپرت بسیار تمیز .\\nخریدار واقعی شامل تخفیف میباشد\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZpCOdfy.jpg\",\n \"/pictures/AZpCOdfy.1.jpg\",\n \"/pictures/AZpCOdfy.2.jpg\",\n \"/pictures/AZpCOdfy.3.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 200000000\n },\n \"production-year\": 1389,\n \"title\": \"پراید ١١١.اسپرت مدل ١٣٨٩\",\n \"usage\": 135000\n },\n \"token\": \"AZpCOdfy\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-07-06T23:53:24.244035\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"سفید صدفی\",\n \"description\": \"سلام \\nمعاوضه با پارس مدل 86 یا پژو 206 مدل 87 یا پژو405 مدل 90\\nماشین داخل و خارج تمیز بوده و بسیار با حساسیت نگهداری شده\\nاین آگهی صرفا برای معاوضه است.\\nیاحق\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZnKiPtc.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 207000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 174000\n },\n \"token\": \"AZnKiPtc\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-07-06T20:00:54.569942\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نوک\\u200cمدادی\",\n \"description\": \"سلام ۱۱۱ آخر ۸۹ فرمان هیدرولیک . ای بی اس .شیشه دودی. ظبط بلوتوثی . باطری نو انداختم روغن تازه .تعویض شده . لنت تعویض شده .کم کارکرد نسبت ب مدلش. دوبند انگشت خودم رنگ زدم دره عقب رانده .کولر سالم و یخ\\nب خریدار واقعی تخفیف داده میشود.\\nلطفا فقط تماس بگیرید ممنون\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZmueueX.jpg\",\n \"/pictures/AZmueueX.1.jpg\",\n \"/pictures/AZmueueX.2.jpg\",\n \"/pictures/AZmueueX.3.jpg\",\n \"/pictures/AZmueueX.4.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 190000000\n },\n \"production-year\": 1389,\n \"title\": \"پراید۱۱۱Ex\",\n \"usage\": 2800\n },\n \"token\": \"AZmueueX\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-07-06T19:09:46.932817\",\n \"post_data\": {\n \"body_status\": \"half-paint\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نقره\\u200cای\",\n \"description\": \"سلام ماشین سالم هستش رخ خوب و تمیزی داره سواری عالی به خاطر خط و خش رنگ شده و اگر سوالی داشتید فقط تماس پاسخگو هستم با تشکر یاحق\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZm-NExJ.jpg\",\n \"/pictures/AZm-NExJ.1.jpg\",\n \"/pictures/AZm-NExJ.2.jpg\",\n \"/pictures/AZm-NExJ.3.jpg\",\n \"/pictures/AZm-NExJ.4.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 203000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 175600\n },\n \"token\": \"AZm-NExJ\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-07-01T13:48:12.268382\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"سفید\",\n \"description\": \"با سلام \\nفقط اقساط\\nلطفا اول آگهی رو مطالعه کنید بعد تماس بگیرید\\nشرایط اقساط\\nداشتن دست چک صیادی به نام خریدار الزامی میباشد\\n\\nاقساط برای ساکنین تهران و حومه و کرج\\nاقساط از ۶ ماه تا ۱۲ ماه\\nپلاک و کارت خودرو به نام خریدار \\n\\nنهایت تا ۵۰٪ قیمت خودرو اقساط میشود\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZS6MVIA.jpg\",\n \"/pictures/AZS6MVIA.1.jpg\",\n \"/pictures/AZS6MVIA.2.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 200000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 120000\n },\n \"token\": \"AZS6MVIA\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-27T13:24:21.266696\",\n \"post_data\": {\n \"body_status\": \"two-spots-paint\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"خاکستری\",\n \"description\": \"پراید ۱۱۱مدل ۹۰\\nسه لگه رنگ دارد\\nتمامی شاسی ها سالم عکس کارشناسی داخل عکس ها \\nفنی واقعا سالم به شرط کارشناسی \\n۱۱ماه بیمه دارد\\nکولر بخاری همه سالم \\nماشین بدون تصادف هستش عکس قبل رنگش رو\\u200c دارم که مال زیبایی رنگ کردم\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZZ667Jx.jpg\",\n \"/pictures/AZZ667Jx.1.jpg\",\n \"/pictures/AZZ667Jx.2.jpg\",\n \"/pictures/AZZ667Jx.3.jpg\",\n \"/pictures/AZZ667Jx.4.jpg\",\n \"/pictures/AZZ667Jx.5.jpg\",\n \"/pictures/AZZ667Jx.6.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 220000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 150000\n },\n \"token\": \"AZZ667Jx\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-25T09:23:39.005098\",\n \"post_data\": {\n \"body_status\": \"some-paint\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نوک\\u200cمدادی\",\n \"description\": \"خوررو از جلو تصادف جزیئ داشته ولی فوق العاده فنی سالم و ظاهر خوبی داره\",\n \"fuel_type\": \"benzine\",\n \"images\": [\n \"/pictures/AZH-BJxn.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 165000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 SX، مدل ۱۳۹۰\",\n \"usage\": 200000\n },\n \"token\": \"AZH-BJxn\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-24T15:56:35.390487\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نقره\\u200cای\",\n \"description\": \"خودرو سالم و بدون رنگ است \\nفنی کاملا سالم \\nکم کارکرد\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZWCOe9O.jpg\",\n \"/pictures/AZWCOe9O.1.jpg\",\n \"/pictures/AZWCOe9O.2.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 198000000\n },\n \"production-year\": 1389,\n \"title\": \"پراید ۱۱۱سالم\",\n \"usage\": 125000\n },\n \"token\": \"AZWCOe9O\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-22T19:48:51.382887\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نوک\\u200cمدادی\",\n \"description\": \"تخفیف جزعی پای معامله\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZUKXKyL.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 230000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 170000\n },\n \"token\": \"AZUKXKyL\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-21T20:08:12.231753\",\n \"post_data\": {\n \"body_status\": \"paintless-dent-removal\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"مشکی\",\n \"description\": \"سلام ماشین متوری سالمه هیدرولیکش خراب شده کم میکنم ازش ماشین بدون رنگه چراغ جلو هدلایت چراغ عقب اسپرت .اگزوز هاوارد ۷۰۶ روکش چرم کف پایی سه بعدی .چون پول لازمم میفروشم\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZTaiqL1.jpg\",\n \"/pictures/AZTaiqL1.1.jpg\",\n \"/pictures/AZTaiqL1.2.jpg\",\n \"/pictures/AZTaiqL1.3.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 170000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 190000\n },\n \"token\": \"AZTaiqL1\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-20T19:23:25.056994\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"سفید\",\n \"description\": \"دزدگیر دارد-رینگ آلومینیوم -ضبط فلش خور و باند دارد-لاستیک سالم -بدون باربند-روکش صندلی نو-موتور کاملا سالم -دینام و کولر و باتری سالم -تخفیف جزئی دارد-خریدار واقعی تماس بگیرد-جهت بازدید هماهنگ نمایید -\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZRqs1hp.jpg\",\n \"/pictures/AZRqs1hp.1.jpg\",\n \"/pictures/AZRqs1hp.2.jpg\",\n \"/pictures/AZRqs1hp.3.jpg\",\n \"/pictures/AZRqs1hp.4.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 235000000\n },\n \"production-year\": 1390,\n \"title\": \"فروش پرایدسفید رنگ\",\n \"usage\": 123000\n },\n \"token\": \"AZRqs1hp\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-07-02T00:07:59.596165\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"دلفینی\",\n \"description\": \"سالم سالم\\nشاسی پلمپ جلو وعقب بدون ضربه\\nبدون رنگ \\nخط وخش دارد\\nدزد گیر تصویری \\nماشین همش خواب بوده\\nمصرفی عوض شده\\nوایر و صافی بنزین و لنت \\nدوستان عزیز ارزونتر هست حتما بخرید اصلا وقت خودتونو نگیرید\\nموتور طرح وسپا بکارم میاد\\nتشکر ازدیوار \\nچت هم فعال و اس ام اس\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZNS2Vut.jpg\",\n \"/pictures/AZNS2Vut.1.jpg\",\n \"/pictures/AZNS2Vut.2.jpg\",\n \"/pictures/AZNS2Vut.3.jpg\",\n \"/pictures/AZNS2Vut.4.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 225000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 120000\n },\n \"token\": \"AZNS2Vut\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-17T20:34:00.141061\",\n \"post_data\": {\n \"body_status\": \"some-paint\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"سفید\",\n \"description\": \"پراید۱۱۱مدل ۹۰ فنی به شرط کم کا کرد واقعی بیمه۱۰ ماه معاینه ۴ماه روکش صندلی ضبط باند ودزدگیر ...با پراید مدل پایین معاوضه میکنم...\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZNaeckp.jpg\",\n \"/pictures/AZNaeckp.1.jpg\",\n \"/pictures/AZNaeckp.2.jpg\",\n \"/pictures/AZNaeckp.3.jpg\",\n \"/pictures/AZNaeckp.4.jpg\",\n \"/pictures/AZNaeckp.5.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 200000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 102000\n },\n \"token\": \"AZNaeckp\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-20T20:37:17.270084\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نوک\\u200cمدادی\",\n \"description\": \"ماشین بسیار کم کارکرده و موتوری بسیار سالمه\\nسینی صندوق ضربه خیلی جزئی داشته\\nضربه شاسی جلو سمت راننده هم در حد فشار خیلی کم سپر به جدوله\\nضبط پایونیر فلش\\u200cخور و کابل خور داره\\nشیشه\\u200cها دودیه\\nروغن\\u200cهاش هم باید ۳هزار کیلومتر دیگه عوض بشه.\\nتسمه\\u200cها رو ۹۰هزارتا تعویض شده.\\nلنت ترمز\\u200cهای جلو هم تازه عوض شده.\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZMubFMh.jpg\",\n \"/pictures/AZMubFMh.1.jpg\",\n \"/pictures/AZMubFMh.2.jpg\",\n \"/pictures/AZMubFMh.3.jpg\",\n \"/pictures/AZMubFMh.4.jpg\",\n \"/pictures/AZMubFMh.5.jpg\",\n \"/pictures/AZMubFMh.6.jpg\",\n \"/pictures/AZMubFMh.7.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 205000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 SX، مدل ۱۳۹۰\",\n \"usage\": 108000\n },\n \"token\": \"AZMubFMh\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-16T13:34:25.480252\",\n \"post_data\": {\n \"body_status\": \"intact\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"خاکستری\",\n \"description\": \"فوری فروشی\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZMOjIKA.jpg\",\n \"/pictures/AZMOjIKA.1.jpg\",\n \"/pictures/AZMOjIKA.2.jpg\",\n \"/pictures/AZMOjIKA.3.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 210000000\n },\n \"production-year\": 1389,\n \"title\": \"خودرو پراید١١١ مدل ١٣٨٩ اسپرت\",\n \"usage\": 135000\n },\n \"token\": \"AZMOjIKA\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-16T11:38:46.748288\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نوک\\u200cمدادی\",\n \"description\": \"ماشین کاملا بی رنگ فقط شاسی جلو سمت راننده ترک داره جوش خورده\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZMOB8sJ.jpg\",\n \"/pictures/AZMOB8sJ.1.jpg\",\n \"/pictures/AZMOB8sJ.2.jpg\",\n \"/pictures/AZMOB8sJ.3.jpg\",\n \"/pictures/AZMOB8sJ.4.jpg\",\n \"/pictures/AZMOB8sJ.5.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 195000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 SX، مدل ۱۳۹۰\",\n \"usage\": 178000\n },\n \"token\": \"AZMOB8sJ\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-16T18:40:55.55741\",\n \"post_data\": {\n \"body_status\": \"some-paint\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"نوک\\u200cمدادی\",\n \"description\": \"با سلام خودرو از لحاظ فنی درجه یک و پرشتاب\\nلاستیک نو\\nکولر روشن\\nبدون هزینه اماده مسافرت\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZImQSdF.jpg\",\n \"/pictures/AZImQSdF.1.jpg\",\n \"/pictures/AZImQSdF.2.jpg\",\n \"/pictures/AZImQSdF.3.jpg\",\n \"/pictures/AZImQSdF.4.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 170000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 SX، مدل ۱۳۹۰\",\n \"usage\": 180000\n },\n \"token\": \"AZImQSdF\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-13T16:51:32.038865\",\n \"post_data\": {\n \"body_status\": \"some-paint\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"آبی\",\n \"description\": \"خودرو بسیار بسیار تمیزه صرفا بخاطر مشکل مالی میفروشم سرحال و پرشتاب\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZDGS5GL.jpg\",\n \"/pictures/AZDGS5GL.1.jpg\",\n \"/pictures/AZDGS5GL.2.jpg\",\n \"/pictures/AZDGS5GL.3.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 187000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 SX، مدل ۱۳۹۰\",\n \"usage\": 190000\n },\n \"token\": \"AZDGS5GL\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-09T21:31:45.89699\",\n \"post_data\": {\n \"body_status\": \"some-scratches\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"سفید\",\n \"description\": \"۱۱۱سالم فقط سر گلگیر رنگ داره،تصادف نداشته،لاستیک۹۰درصد ،دزدگیر تصویری،بیمه تا برج۱۲،معاینه تا برج ۹،شیشه دودیusa،کولر روشن\\nماشین ۱۳۹۰/۱۲/۲۰ تحویل شده\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZDi2C7N.jpg\",\n \"/pictures/AZDi2C7N.1.jpg\",\n \"/pictures/AZDi2C7N.2.jpg\",\n \"/pictures/AZDi2C7N.3.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 200000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 124000\n },\n \"token\": \"AZDi2C7N\"\n },\n {\n \"business_type\": \"PERSONAL\",\n \"last_modified\": \"2023-06-11T09:42:30.502782\",\n \"post_data\": {\n \"body_status\": \"intact\",\n \"brand_model\": \"Pride 111 EX\",\n \"category\": \"light\",\n \"color\": \"سفید\",\n \"description\": \"ماشین از همه نظر سالم هست تعویض اتاق۱۳۹۸ خود شرکت سایپا تعویض شده درسندش خورده ماشین از هر نظر سالم هستش ماشین در پردیس هستش\",\n \"fuel_type\": \"benzine\",\n \"gearbox\": \"manual\",\n \"images\": [\n \"/pictures/AZBqtUV8.jpg\",\n \"/pictures/AZBqtUV8.1.jpg\",\n \"/pictures/AZBqtUV8.2.jpg\"\n ],\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 225000000\n },\n \"production-year\": 1390,\n \"title\": \"پراید 111 EX، مدل ۱۳۹۰\",\n \"usage\": 170000\n },\n \"token\": \"AZBqtUV8\"\n }\n ]\n}"
}
]
},
{
"name": "Get Post",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/finder/post/{{token}}",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"finder",
"post",
"{{token}}"
]
},
"description": "دریافت اطلاعات یک پست"
},
"response": [
{
"name": "Get Post",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/finder/post/{{token}}",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"finder",
"post",
"{{token}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Tue, 06 Aug 2024 13:35:22 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "grpcgateway-content-type",
"value": "application/grpc"
},
{
"key": "x-datacenter",
"value": "neda"
},
{
"key": "x-envoy-upstream-service-time",
"value": "25"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000"
},
{
"key": "Content-Encoding",
"value": "br"
},
{
"key": "X-ZRK-US",
"value": "200"
},
{
"key": "Server",
"value": "Delivery"
},
{
"key": "X-ZRK-CS",
"value": "BYPASS"
},
{
"key": "X-ZRK-SN",
"value": "1004"
},
{
"key": "Accept-Ranges",
"value": "bytes"
}
],
"cookie": [],
"body": "{\n \"state\": \"PUBLISHED\",\n \"first_published_at\": \"2024-06-02T17:35:21.269585Z\",\n \"token\": \"gZctX-wd\",\n \"category\": \"laptops\",\n \"city\": \"tehran\",\n \"district\": \"valiasr\",\n \"data\": {\n \"brand\": \"HP - اچ\\u200cپی\",\n \"color\": \"نقره\\u200cای\",\n \"description\": \"لپ تاپ اچ پی 645 g4,فوق العاده تمیز بدون\\u200cایراد\\u200cو\\u200cخط گرافیک دار قدرتمند\\ncpu: ryzen5 2500u\\nram: 8 GB ddr4\\nssd: 256 GB\\ngpu: 1 GBAMD\\nscreen: 14' fhd\\nهمراه با شارژر اورجینال \\nپشتیبانی از انواع پورت ها مختلف \\nدستگاه دارای ۲\\u200c هفته مهلت تست فنی بوده که کتبی همراه با فاکتور ارائه میشود \\nانواع مدل لپ تاپ های استوک سرفیس پرو و سرفیس بوک و سرفیس لپ تاپ و برند های دیگر نیز موجود است \\nتماس جهت مشاوره از ۹صبح تا ۱۲ شب\",\n \"hdmi_port\": true,\n \"images\": [\n \"https://s100.divarcdn.com/static/photo/afra/post/M7zZryeZtMONInnT8tMNVQ/88cebacb-d0a5-45dd-a740-d51b02fafde6.jpg\",\n \"https://s100.divarcdn.com/static/photo/afra/post/Vy0fzDhGGVhai7Vm5cQVbw/0203c0e0-4451-4f62-9863-80e475472f2d.jpg\",\n \"https://s100.divarcdn.com/static/photo/afra/post/_WBgG1fpp7_wkWaT-fgUrA/890f20ae-822f-474e-99fa-92cc5f569b83.jpg\",\n \"https://s100.divarcdn.com/static/photo/afra/post/iF6HoUPxcjXACGMrFuIn_Q/1a0de625-cdb7-443d-8b10-e540dcdb4a4b.jpg\",\n \"https://s100.divarcdn.com/static/photo/afra/post/kQ11l4eYUr9HCa0EtIw2dw/934aadc5-0409-46fd-bb64-78a1646c59f9.jpg\"\n ],\n \"internal_storage\": \"۲۵۶ گیگابایت\",\n \"latitude\": 35.707144062427,\n \"longitude\": 51.405458450317,\n \"new_price\": 12800000,\n \"os\": \"Windows 10\",\n \"price\": {\n \"mode\": \"مقطوع\",\n \"value\": 12800000\n },\n \"processor\": \"Ryzen 5\",\n \"ram_memory\": \"۸ گیگابایت\",\n \"screen_size\": \"۱۴ اینچ تا ۱۶ اینچ\",\n \"status\": \"like-new\",\n \"title\": \"لپ تاپ HP مدل probook 645 G4\",\n \"touch_screen\": true\n }\n}"
}
]
},
{
"name": "Get User Posts",
"request": {
"method": "GET",
"header": [
{
"key": "x-access-token",
"value": "{{oauth_access_token}}",
"type": "text"
}
],
"url": {
"raw": "{{host}}/v1/open-platform/finder/user-posts",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"finder",
"user-posts"
]
}
},
"response": [
{
"name": "Get User Posts",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "x-access-token",
"value": "{{oauth_access_token}}",
"type": "text"
}
],
"url": {
"raw": "{{host}}/v1/open-platform/finder/user-posts",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"finder",
"user-posts"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Tue, 06 Aug 2024 13:32:29 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "grpcgateway-content-type",
"value": "application/grpc"
},
{
"key": "x-datacenter",
"value": "neda"
},
{
"key": "x-envoy-upstream-service-time",
"value": "40"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000"
},
{
"key": "Content-Encoding",
"value": "br"
},
{
"key": "X-ZRK-US",
"value": "200"
},
{
"key": "Server",
"value": "Delivery"
},
{
"key": "X-ZRK-CS",
"value": "BYPASS"
},
{
"key": "X-ZRK-SN",
"value": "1004"
},
{
"key": "Accept-Ranges",
"value": "bytes"
}
],
"cookie": [],
"body": "{\n \"posts\": [\n {\n \"token\": \"gZfC8VM6\",\n \"title\": \"آئودی Q5\",\n \"category\": \"light\"\n }\n ]\n}"
}
]
}
]
},
{
"name": "Post Addons",
"item": [
{
"name": "Delete",
"request": {
"method": "DELETE",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/addons/post/{{token}}",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"addons",
"post",
"{{token}}"
]
},
"description": "حذف مکمل از آگهی"
},
"response": [
{
"name": "Delete Post AddOn",
"originalRequest": {
"method": "DELETE",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/addons/post/{{token}}",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"addons",
"post",
"{{token}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Sun, 09 Jul 2023 11:55:38 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Content-Length",
"value": "2"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Grpcgateway-Content-Type",
"value": "application/grpc"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "Access-Control-Allow-Credentials",
"value": "true"
},
{
"key": "Access-Control-Expose-Headers",
"value": "X-JWT-REFRESH, X-JWT-ERROR"
},
{
"key": "X-Datacenter",
"value": "afra"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000"
},
{
"key": "X-ZRK-US",
"value": "200"
},
{
"key": "Server",
"value": "Delivery"
},
{
"key": "X-ZRK-SN",
"value": "1034"
},
{
"key": "Accept-Ranges",
"value": "bytes"
},
{
"key": "Accept-Ranges",
"value": "bytes"
}
],
"cookie": [],
"body": "{}"
}
]
},
{
"name": "Create",
"request": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"widgets\": {\n \"widget_list\": [\n {\n \"widget_type\": \"SCORE_ROW\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.ScoreRowData\",\n \"title\": \"فنی\",\n \"percentage_score\": 80,\n \"score_color\": \"SUCCESS_PRIMARY\",\n \"hasDivider\": true,\n \"icon\": {\n \"icon_name\": \"HISTORY\",\n \"icon_color\": \"SUCCESS_PRIMARY\"\n },\n \"action\": {\n \"type\": \"LOAD_WEB_VIEW_PAGE\",\n \"fallback_link\": \"https://ehsandar.com/test\",\n \"payload\": {\n \"@type\": \"type.googleapis.com/widgets.LoadWebViewPagePayload\",\n \"url\": \"https://ehsandar.com/test\"\n }\n }\n }\n },\n {\n \"widget_type\": \"SCORE_ROW\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.ScoreRowData\",\n \"title\": \"قدرت در دست مادر ایرانی\",\n \"percentage_score\": 100,\n \"score_color\": \"ICON_PRIMARY\",\n \"hasDivider\": true,\n \"icon\": {\n \"icon_name\": \"CAR_ENGINE\",\n \"icon_color\": \"ICON_PRIMARY\"\n },\n \"action\": {\n \"type\": \"LOAD_WEB_VIEW_PAGE\",\n \"fallback_link\": \"https://ehsandar.com\",\n \"payload\": {\n \"@type\": \"type.googleapis.com/widgets.LoadWebViewPagePayload\",\n \"url\": \"https://ehsandar.com\"\n }\n }\n }\n },\n {\n \"widget_type\": \"SCORE_ROW\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.ScoreRowData\",\n \"title\": \"بدنه\",\n \"percentage_score\": 35,\n \"score_color\": \"WARNING_SECONDARY\",\n \"hasDivider\": true,\n \"icon\": {\n \"icon_name\": \"CAR_HYDRAULICS\",\n \"icon_color\": \"WARNING_SECONDARY\"\n },\n \"action\": {\n \"type\": \"LOAD_WEB_VIEW_PAGE\",\n \"fallback_link\": \"https://ehsandar.com\",\n \"payload\": {\n \"@type\": \"type.googleapis.com/widgets.LoadWebViewPagePayload\",\n \"url\": \"https://ehsandar.com\"\n }\n }\n }\n },\n {\n \"widget_type\": \"WIDE_BUTTON_BAR\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.WideButtonBarWidgetData\",\n \"style\": \"SECONDARY\",\n \"button\": {\n \"action\": {\n \"type\": \"OPEN_WEB_PAGE\",\n \"fallback_link\": \"https://ehsandar.com\",\n \"payload\": {\n \"@type\": \"type.googleapis.com/widgets.OpenWebPagePayload\",\n \"link\": \"https://ehsandar.com\"\n }\n },\n \"title\": \"به سمت الودمپایی\",\n \"disable\": false\n }\n }\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{host}}/v1/open-platform/add-ons/post/{{token}}",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"add-ons",
"post",
"{{token}}"
]
},
"description": "درج مکمل در آگهی"
},
"response": [
{
"name": "Create Post AddOn",
"originalRequest": {
"method": "POST",
"header": [],
"body": {
"mode": "raw",
"raw": "{\n \"widgets\": {\n \"widget_list\": [\n {\n \"widget_type\": \"SCORE_ROW\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.ScoreRowData\",\n \"title\": \"فنی\",\n \"percentage_score\": 80,\n \"score_color\": \"SUCCESS_PRIMARY\",\n \"hasDivider\": true,\n \"icon\": {\n \"icon_name\": \"HISTORY\",\n \"icon_color\": \"SUCCESS_PRIMARY\"\n },\n \"action\": {\n \"type\": \"LOAD_WEB_VIEW_PAGE\",\n \"fallback_link\": \"https://google.com/\",\n \"payload\": {\n \"@type\": \"type.googleapis.com/widgets.LoadWebViewPagePayload\",\n \"url\": \"https://google.com/\"\n }\n }\n }\n },\n {\n \"widget_type\": \"SCORE_ROW\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.ScoreRowData\",\n \"title\": \"قدرت در دست مادر ایرانی\",\n \"percentage_score\": 100,\n \"score_color\": \"ICON_PRIMARY\",\n \"hasDivider\": true,\n \"icon\": {\n \"icon_name\": \"CAR_ENGINE\",\n \"icon_color\": \"ICON_PRIMARY\"\n },\n \"action\": {\n \"type\": \"LOAD_WEB_VIEW_PAGE\",\n \"fallback_link\": \"https://google.com\",\n \"payload\": {\n \"@type\": \"type.googleapis.com/widgets.LoadWebViewPagePayload\",\n \"url\": \"https://google.com\"\n }\n }\n }\n },\n {\n \"widget_type\": \"SCORE_ROW\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.ScoreRowData\",\n \"title\": \"بدنه\",\n \"percentage_score\": 35,\n \"score_color\": \"WARNING_SECONDARY\",\n \"hasDivider\": true,\n \"icon\": {\n \"icon_name\": \"CAR_HYDRAULICS\",\n \"icon_color\": \"WARNING_SECONDARY\"\n },\n \"action\": {\n \"type\": \"LOAD_WEB_VIEW_PAGE\",\n \"fallback_link\": \"https://google.com\",\n \"payload\": {\n \"@type\": \"type.googleapis.com/widgets.LoadWebViewPagePayload\",\n \"url\": \"https://google.com\"\n }\n }\n }\n },\n {\n \"widget_type\": \"WIDE_BUTTON_BAR\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.WideButtonBarWidgetData\",\n \"style\": \"SECONDARY\",\n \"button\": {\n \"action\": {\n \"type\": \"OPEN_WEB_PAGE\",\n \"fallback_link\": \"https://google.com\",\n \"payload\": {\n \"@type\": \"type.googleapis.com/widgets.OpenWebPagePayload\",\n \"link\": \"https://google.com\"\n }\n },\n \"title\": \"به سمت الودمپایی\",\n \"disable\": false\n }\n }\n }\n ]\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{host}}/v1/open-platform/addons/post/{{token}}",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"addons",
"post",
"{{token}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Sun, 09 Jul 2023 11:55:28 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Content-Length",
"value": "12"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Grpcgateway-Content-Type",
"value": "application/grpc"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "Access-Control-Allow-Credentials",
"value": "true"
},
{
"key": "Access-Control-Expose-Headers",
"value": "X-JWT-REFRESH, X-JWT-ERROR"
},
{
"key": "X-Datacenter",
"value": "afra"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000"
},
{
"key": "X-ZRK-US",
"value": "200"
},
{
"key": "Server",
"value": "Delivery"
},
{
"key": "X-ZRK-SN",
"value": "1034"
},
{
"key": "Accept-Ranges",
"value": "bytes"
},
{
"key": "Accept-Ranges",
"value": "bytes"
}
],
"cookie": [],
"body": "{\n \"id\": \"369\"\n}"
}
]
},
{
"name": "List",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/addons/post/{{post_token}}",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"addons",
"post",
"{{post_token}}"
]
}
},
"response": [
{
"name": "List Post Addons",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/addons/post/{{post_token}}",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"addons",
"post",
"{{post_token}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Tue, 06 Aug 2024 13:55:21 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "grpcgateway-content-type",
"value": "application/grpc"
},
{
"key": "x-datacenter",
"value": "neda"
},
{
"key": "x-envoy-upstream-service-time",
"value": "12"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000"
},
{
"key": "Content-Encoding",
"value": "br"
},
{
"key": "X-ZRK-US",
"value": "200"
},
{
"key": "Server",
"value": "Delivery"
},
{
"key": "X-ZRK-CS",
"value": "BYPASS"
},
{
"key": "X-ZRK-SN",
"value": "1004"
},
{
"key": "Accept-Ranges",
"value": "bytes"
}
],
"cookie": [],
"body": "{\n \"addons\": [\n {\n \"meta_data\": {\n \"id\": \"29988609\",\n \"app\": {\n \"slug\": \"UID\",\n \"service_type\": \"REPORT_VERIFICATION\"\n },\n \"created_at\": \"2024-08-06T15:29:16.246004Z\",\n \"last_modified\": \"2024-08-06T15:29:16.246004Z\",\n \"status\": \"ACTIVE\"\n },\n \"token\": \"gZiGQyjY\",\n \"widgets\": {\n \"widget_list\": [\n {\n \"widget_type\": \"EVENT_ROW\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.EventRowData\",\n \"title\": \"آرش عبادتي فرح آورنوبيجاري\",\n \"subtitle\": \"تایید احراز هویت\",\n \"image_url\": \"https://s100.divarcdn.com/static/images/open-platform/lIyGphmQSsqcZ1aISrDvKQ.jpg\",\n \"label\": \"هوش مصنوعی\",\n \"has_divider\": true,\n \"padded\": true,\n \"counter\": 1,\n \"icon\": {\n \"icon_name\": \"CAR_HYDRAULICS\"\n }\n }\n }\n ]\n },\n \"score\": \"1001001\",\n \"secondary_links\": {\n \"secondary_linkages\": [\n {\n \"position\": \"POST_SPEC_TAIL\",\n \"widgets\": {\n \"widget_list\": [\n {\n \"widget_type\": \"EVENT_ROW\",\n \"data\": {\n \"@type\": \"type.googleapis.com/widgets.EventRowData\",\n \"title\": \"آرش عبادتي فرح آورنوبيجاري\",\n \"subtitle\": \"تایید احراز هویت\",\n \"image_url\": \"https://s100.divarcdn.com/static/images/open-platform/lIyGphmQSsqcZ1aISrDvKQ.jpg\",\n \"label\": \"هوش مصنوعی\",\n \"has_divider\": true,\n \"padded\": true,\n \"counter\": 1,\n \"icon\": {\n \"icon_name\": \"CAR_HYDRAULICS\"\n }\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}"
}
]
}
],
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
]
},
{
"name": "Assets",
"item": [
{
"name": "Categories",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/assets/category",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"assets",
"category"
]
},
"description": "فهرست دستهها در دیوار"
},
"response": [
{
"name": "Divar Categories",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/assets/category",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"assets",
"category"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Sun, 09 Jul 2023 12:00:30 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Grpcgateway-Content-Type",
"value": "application/grpc"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "Access-Control-Allow-Credentials",
"value": "true"
},
{
"key": "Access-Control-Expose-Headers",
"value": "X-JWT-REFRESH, X-JWT-ERROR"
},
{
"key": "X-Datacenter",
"value": "afra"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "X-ZRK-US",
"value": "200"
},
{
"key": "Server",
"value": "Delivery"
},
{
"key": "X-ZRK-CS",
"value": "BYPASS"
},
{
"key": "X-ZRK-SN",
"value": "1004"
},
{
"key": "Accept-Ranges",
"value": "bytes"
}
],
"cookie": [],
"body": "{\n \"categories\": [\n {\n \"display\": \"دسته بندی اصلی\",\n \"slug\": \"root\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک\",\n \"slug\": \"real-estate\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره مسکونی\",\n \"slug\": \"residential-rent\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل نقلیه\",\n \"slug\": \"vehicles\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال\",\n \"slug\": \"electronic-devices\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه\",\n \"slug\": \"home-kitchen\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات\",\n \"slug\": \"services\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی\",\n \"slug\": \"personal\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت\",\n \"slug\": \"leisure-hobbies\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی\",\n \"slug\": \"community\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی\",\n \"slug\": \"tools-materials-equipment\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان)\",\n \"slug\": \"jobs\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - موبایل و تبلت\",\n \"slug\": \"mobile-tablet\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - کیف، کفش و لباس\",\n \"slug\": \"clothing-and-shoes\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - رایانه\",\n \"slug\": \"computers\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - بلیط\",\n \"slug\": \"ticket\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل نقلیه - خودرو\",\n \"slug\": \"cars\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - موتور و ماشین\",\n \"slug\": \"car-and-motor\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی - رویداد\",\n \"slug\": \"event\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - اداری و مدیریت\",\n \"slug\": \"administration-and-hr\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - فروش مسکونی\",\n \"slug\": \"residential-sell\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - سرایداری و نظافت\",\n \"slug\": \"janitorial-cleaning\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - کنسول، بازی\\u200c ویدئویی و آنلاین\",\n \"slug\": \"game-consoles-and-video-games\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - زیورآلات و اکسسوری\",\n \"slug\": \"jewelry-and-watches\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - صوتی و تصویری\",\n \"slug\": \"audio-video\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - پذیرایی/مراسم\",\n \"slug\": \"catering\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی - داوطلبانه\",\n \"slug\": \"volunteers\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - آرایشی، بهداشتی و درمانی\",\n \"slug\": \"health-beauty\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - تور و چارتر\",\n \"slug\": \"travel-packages\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - معماری، عمران و ساختمانی\",\n \"slug\": \"construction-craft\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - خدمات فروشگاه و رستوران\",\n \"slug\": \"shop-restaurant\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - وسایل بچه و اسباب بازی - کفش و لباس بچه\",\n \"slug\": \"childrens-clothing-and-shoe\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - کتاب و مجله\",\n \"slug\": \"book-student-literature\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل نقلیه - موتورسیکلت\",\n \"slug\": \"motorcycles\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل نقلیه - قطعات یدکی و لوازم جانبی\",\n \"slug\": \"parts-accessories\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - خدمات رایانه\\u200cای و موبایل\",\n \"slug\": \"computer-and-mobile\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - رایانه و فناوری اطلاعات\",\n \"slug\": \"computer-and-it\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - فروش اداری و تجاری\",\n \"slug\": \"commercial-sell\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - تلفن رومیزی\",\n \"slug\": \"phone\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - وسایل بچه و اسباب بازی\",\n \"slug\": \"baby-and-toys\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - دوچرخه/اسکیت/اسکوتر\",\n \"slug\": \"bicycle\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - مالی و حسابداری و حقوقی\",\n \"slug\": \"accounting-finance-legal\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - حیوانات\",\n \"slug\": \"animals\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - مالی/حسابداری/بیمه\",\n \"slug\": \"accounting-and-finance\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - بازاریابی و فروش\",\n \"slug\": \"sales-marketing\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - کلکسیون و سرگرمی\",\n \"slug\": \"hobby-collectibles\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - حمل و نقل\",\n \"slug\": \"transport\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - صنعتی و فنی و مهندسی\",\n \"slug\": \"industrial-technology\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - پیشه و مهارت\",\n \"slug\": \"craftsmen\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - آموزشی\",\n \"slug\": \"education\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - آلات موسیقی\",\n \"slug\": \"musical-instruments\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل نقلیه - قایق و سایر وسایل نقلیه\",\n \"slug\": \"boat\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - حمل و نقل\",\n \"slug\": \"transportation\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - ورزش و تناسب اندام\",\n \"slug\": \"sport-leisure\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - آرایشگری و زیبایی\",\n \"slug\": \"beauty-and-haircare\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - درمانی و زیبایی و بهداشتی\",\n \"slug\": \"care-health-beauty\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - سرگرمی\",\n \"slug\": \"entertainment\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - اسباب\\u200c بازی\",\n \"slug\": \"leisure-hobbies-toys\"\n },\n {\n \"display\": \"دسته بندی اصلی - استخدام و کاریابی (غیر رایگان) - هنری و رسانه\",\n \"slug\": \"media-advertising\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - نظافت\",\n \"slug\": \"cleaning\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - باغبانی و درختکاری\",\n \"slug\": \"garden-and-landscaping\"\n },\n {\n \"display\": \"دسته بندی اصلی - خدمات - آموزشی\",\n \"slug\": \"teaching\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - زیورآلات و اکسسوری - ساعت\",\n \"slug\": \"watches\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - زیورآلات و اکسسوری - جواهرات\",\n \"slug\": \"jewelry\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - وسایل بچه و اسباب بازی - اسباب بازی\",\n \"slug\": \"personal-toys\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - وسایل بچه و اسباب بازی - کالسکه و لوازم جانبی\",\n \"slug\": \"strollers-and-accessories\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - وسایل بچه و اسباب بازی - تخت و صندلی بچه\",\n \"slug\": \"child-car-seat\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - وسایل بچه و اسباب بازی - اسباب و اثاث بچه\",\n \"slug\": \"childrens-furniture\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - رایانه - رایانه همراه\",\n \"slug\": \"laptops\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - صوتی و تصویری - فیلم و موسیقی\",\n \"slug\": \"movies-and-music\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - بلیط - کنسرت\",\n \"slug\": \"concert\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - آلات موسیقی - گیتار، بیس و امپلیفایر\",\n \"slug\": \"guitar-bass-amplifier\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - کلکسیون و سرگرمی - سکه، تمبر و اسکناس\",\n \"slug\": \"coin-stamp\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - ورزش و تناسب اندام - ورزش\\u200cهای توپی\",\n \"slug\": \"ball-sports\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - آلات موسیقی - سازهای بادی\",\n \"slug\": \"wind\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - موبایل و تبلت - موبایل\",\n \"slug\": \"mobile-phones\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی - رویداد - حراج\",\n \"slug\": \"for-sale\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - کیف، کفش و لباس - کیف/کفش/کمربند\",\n \"slug\": \"shoes-belt-bag\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - کیف، کفش و لباس - لباس\",\n \"slug\": \"clothing\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - کتاب و مجله - آموزشی\",\n \"slug\": \"educational\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - کتاب و مجله - ادبی\",\n \"slug\": \"literary\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - فروش مسکونی - آپارتمان\",\n \"slug\": \"apartment-sell\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره مسکونی - آپارتمان\",\n \"slug\": \"apartment-rent\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - فروش اداری و تجاری - دفتر کار، اتاق اداری و مطب\",\n \"slug\": \"office-sell\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره اداری و تجاری - دفتر کار، اتاق اداری و مطب\",\n \"slug\": \"office-rent\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل نقلیه - خودرو - سواری و وانت\",\n \"slug\": \"light\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - رایانه - رایانه رومیزی\",\n \"slug\": \"desktops\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - صوتی و تصویری - دوربین عکاسی و فیلم\\u200cبرداری\",\n \"slug\": \"camera-camcoders\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - بلیط - تئاتر و سینما\",\n \"slug\": \"theatre-and-cinema\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - حیوانات - گربه\",\n \"slug\": \"cat\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - آلات موسیقی - پیانو/کیبورد/آکاردئون\",\n \"slug\": \"piano-keyboard\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - ورزش و تناسب اندام - کوهنوردی و کمپینگ\",\n \"slug\": \"camping-outdoor\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - موبایل و تبلت - تبلت\",\n \"slug\": \"tablet\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی - رویداد - گردهمایی و همایش\",\n \"slug\": \"conference-meeting\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی - داوطلبانه - تحقیقاتی\",\n \"slug\": \"research\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - زیورآلات و اکسسوری - بدلیجات\",\n \"slug\": \"rhinestones\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - فروش مسکونی - خانه و ویلا\",\n \"slug\": \"house-villa-sell\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره مسکونی - خانه و ویلا\",\n \"slug\": \"house-villa-rent\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - فروش اداری و تجاری - مغازه و غرفه\",\n \"slug\": \"shop-sell\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره اداری و تجاری - مغازه و غرفه\",\n \"slug\": \"shop-rent\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - پرو\\u200cژه\\u200cهای ساخت و ساز - مشارکت در ساخت\",\n \"slug\": \"partnership\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - صوتی و تصویری - پخش\\u200cکننده همراه\",\n \"slug\": \"mp3-player\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - بلیط - کارت هدیه و تخفیف\",\n \"slug\": \"gift-certificate\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - حیوانات - موش و خرگوش\",\n \"slug\": \"rodents-rabbits\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - ورزش و تناسب اندام - غواصی و ورزش\\u200cهای آبی\",\n \"slug\": \"diving-watersports\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - موبایل و تبلت - لوازم جانبی موبایل و تبلت\",\n \"slug\": \"mobile-tablet-accessories\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - رایانه - قطعات و لوازم جانبی\",\n \"slug\": \"parts-and-accessories\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - کتاب و مجله - تاریخی\",\n \"slug\": \"historical\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - ورزش و تناسب اندام - ماهیگیری\",\n \"slug\": \"fishing\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - فروش مسکونی - زمین و کلنگی\",\n \"slug\": \"plot-old\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - فروش اداری و تجاری - صنعتی، کشاورزی و تجاری\",\n \"slug\": \"industry-agriculture-business-sell\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره اداری و تجاری - صنعتی، کشاورزی و تجاری\",\n \"slug\": \"industry-agriculture-business-rent\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - بلیط - اماکن و مسابقات ورزشی\",\n \"slug\": \"tickets-sports\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - پرو\\u200cژه\\u200cهای ساخت و ساز - پیش\\u200cفروش\",\n \"slug\": \"presell\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - صوتی و تصویری - سیستم صوتی خانگی\",\n \"slug\": \"stereo-surround\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - بلیط - ورزشی\",\n \"slug\": \"sport\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - حیوانات - خزنده\",\n \"slug\": \"reptile\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - آلات موسیقی - سنتی\",\n \"slug\": \"traditional\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی - رویداد - ورزشی\",\n \"slug\": \"events-sports\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - رایانه - لوازم و تجهیزات شبکه\",\n \"slug\": \"modem-and-network-equipment\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - بلیط - اتوبوس، مترو و قطار\",\n \"slug\": \"bus-metro-train\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - کتاب و مجله - مذهبی\",\n \"slug\": \"religious\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - صوتی و تصویری - ویدئو و پخش کننده DVD\",\n \"slug\": \"video-dvdplayer\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - حیوانات - پرنده\",\n \"slug\": \"birds\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - کلکسیون و سرگرمی - اشیای عتیقه\",\n \"slug\": \"historical-objects\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - ورزش و تناسب اندام - تجهیزات ورزشی\",\n \"slug\": \"training\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - موبایل و تبلت - سیم\\u200cکارت\",\n \"slug\": \"sim-card\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - رایانه - پرینتر/اسکنر/کپی/فکس\",\n \"slug\": \"printer-scaner-copier\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - صوتی و تصویری - تلویزیون و پروژکتور\",\n \"slug\": \"tv-projector\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - حیوانات - ماهی و آکواریوم\",\n \"slug\": \"fish\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - آلات موسیقی - درام پرکاشن\",\n \"slug\": \"drums-percussion\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - ورزش و تناسب اندام - ورزش\\u200cهای زمستانی\",\n \"slug\": \"winter-sports\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - کتاب و مجله - مجلات\",\n \"slug\": \"magazines\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - ورزش و تناسب اندام - اسب و تجهیزات اسب سواری\",\n \"slug\": \"horses-equestrian\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - حیوانات - لوازم جانبی\",\n \"slug\": \"accessories\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - آلات موسیقی - ویولن\",\n \"slug\": \"violins\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - حیوانات - حیوانات مزرعه\",\n \"slug\": \"farm-animals\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل نقلیه - خودرو - اجاره\\u200cای\",\n \"slug\": \"rental\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل نقلیه - خودرو - کلاسیک\",\n \"slug\": \"classic\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل نقلیه - خودرو - سنگین\",\n \"slug\": \"heavy\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی - گم\\u200cشده\\u200cها\",\n \"slug\": \"lost-and-found\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی - گم\\u200cشده\\u200cها - حیوانات\",\n \"slug\": \"lost-animals\"\n },\n {\n \"display\": \"دسته بندی اصلی - اجتماعی - گم\\u200cشده\\u200cها - اشیا\",\n \"slug\": \"lost-things\"\n },\n {\n \"display\": \"دسته بندی اصلی - سرگرمی و فراغت - حیوانات - سگ\",\n \"slug\": \"dog\"\n },\n {\n \"display\": \"دسته بندی اصلی - کالای دیجیتال - صوتی و تصویری - دوربین مداربسته\",\n \"slug\": \"CCTV\"\n },\n {\n \"display\": \"دسته بندی اصلی - وسایل شخصی - لوازم التحریر\",\n \"slug\": \"stationery\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره اداری و تجاری\",\n \"slug\": \"commercial-rent\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره کوتاه مدت\",\n \"slug\": \"temporary-rent\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره کوتاه مدت - آپارتمان و سوئیت\",\n \"slug\": \"suite-apartment\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره کوتاه مدت - ویلا و باغ\",\n \"slug\": \"villa\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - اجاره کوتاه مدت - دفتر کار و فضای آموزشی\",\n \"slug\": \"workspace\"\n },\n {\n \"display\": \"دسته بندی اصلی - املاک - پرو\\u200cژه\\u200cهای ساخت و ساز\",\n \"slug\": \"real-estate-services\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی\",\n \"slug\": \"appliance\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - ظروف و لوازم آشپزخانه\",\n \"slug\": \"kitchen-utensils\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - خوردنی و آشامیدنی\",\n \"slug\": \"food-and-drink\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - خیاطی و بافتنی\",\n \"slug\": \"sewing-knitting\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب\",\n \"slug\": \"furniture-wood\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - نور و روشنایی\",\n \"slug\": \"home-lighting\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - فرش، گلیم و موکت\",\n \"slug\": \"carpet-moquette\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تشک، روتختی و رختخواب\",\n \"slug\": \"sleep-goods\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم دکوری و تزئینی\",\n \"slug\": \"decoration\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تهویه، سرمایش و گرمایش\",\n \"slug\": \"ventilation-cooling-heating\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - شست\\u200cوشو و نظافت\",\n \"slug\": \"washing-cleaning\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - حمام و سرویس بهداشتی\",\n \"slug\": \"bathrooms\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - یخچال و فریزر\",\n \"slug\": \"refrigerator-freezer\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - آب\\u200cسردکن و تصفیه آب\",\n \"slug\": \"water-cooler-refinery\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - ماشین لباسشویی و خشک\\u200cکن لباس\",\n \"slug\": \"washing-machines\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - ماشین ظرفشویی\",\n \"slug\": \"dishwasher\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - جاروبرقی، جاروشارژی و بخارشو\",\n \"slug\": \"vacuums-cleaner\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - اتو و لوازم اتو\",\n \"slug\": \"steam-iron\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - آبمیوه و آب\\u200cمرکبات\\u200cگیر\",\n \"slug\": \"juicers\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - خردکن، آسیاب و غذاساز\",\n \"slug\": \"food-mill\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - سماور، چای\\u200cساز و قهوه\\u200cساز\",\n \"slug\": \"drink-maker\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - اجاق گاز و لوازم برقی پخت\\u200cوپز\",\n \"slug\": \"oven-baking-appliances\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - هود\",\n \"slug\": \"range-hood\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم خانگی برقی - سایر لوازم برقی\",\n \"slug\": \"other-appliances\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - ظروف و لوازم آشپزخانه - سفره، حوله و دستمال آشپزخانه\",\n \"slug\": \"tablecloths\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - ظروف و لوازم آشپزخانه - آب\\u200cچکان و نظم\\u200cدهنده ظروف\",\n \"slug\": \"container-organizers\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - ظروف و لوازم آشپزخانه - قوری، کتری و قهوه\\u200cساز دستی\",\n \"slug\": \"pot-kettle\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - ظروف و لوازم آشپزخانه - ظروف سرو و پذیرایی\",\n \"slug\": \"home-catering\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - ظروف و لوازم آشپزخانه - ظروف نگهدارنده، پلاستیکی و یکبارمصرف\",\n \"slug\": \"containers\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - ظروف و لوازم آشپزخانه - ظروف پخت\\u200cوپز\",\n \"slug\": \"cooking-utensils\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - خیاطی و بافتنی - چرخ خیاطی و ریسندگی\",\n \"slug\": \"sewing-machine\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - خیاطی و بافتنی - لوازم خیاطی و بافتنی\",\n \"slug\": \"sewing-accessories\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - مبلمان خانگی و میزعسلی\",\n \"slug\": \"furniture\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - میز و صندلی غذاخوری\",\n \"slug\": \"dining-table\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - بوفه، ویترین و کنسول\",\n \"slug\": \"buffet-showcases\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - کتابخانه، شلف و قفسه\\u200cهای دیواری\",\n \"slug\": \"bookcase-shelf\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - جاکفشی، کمد و دراور\",\n \"slug\": \"shoe-rack-drawer\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - تخت و سرویس خواب\",\n \"slug\": \"bed-service\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - میز تلفن\",\n \"slug\": \"phone-desk\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - میز تلویزیون\",\n \"slug\": \"tv-stand\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - میز تحریر و کامپیوتر\",\n \"slug\": \"desk\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - مبلمان اداری\",\n \"slug\": \"office-decoration\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - مبلمان و صنایع چوب - صندلی و نیمکت\",\n \"slug\": \"chair-bench\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - نور و روشنایی - لوستر و چراغ آویز\",\n \"slug\": \"chandeliers\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - نور و روشنایی - چراغ خواب و آباژور\",\n \"slug\": \"lampshade\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - نور و روشنایی - ریسه و چراغ تزئینی\",\n \"slug\": \"yarn-lights\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - نور و روشنایی - لامپ و چراغ\",\n \"slug\": \"lamps\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - فرش، گلیم و موکت - فرش\",\n \"slug\": \"carpet\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - فرش، گلیم و موکت - تابلو فرش\",\n \"slug\": \"pictorial-carpet\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - فرش، گلیم و موکت - روفرشی\",\n \"slug\": \"rubber-carpet\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - فرش، گلیم و موکت - پادری\",\n \"slug\": \"mat\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - فرش، گلیم و موکت - موکت\",\n \"slug\": \"moquette\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - فرش، گلیم و موکت - گلیم، جاجیم و گبه\",\n \"slug\": \"rugs-woolen-cloth\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - فرش، گلیم و موکت - پشتی\",\n \"slug\": \"lumbar-pillow\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تشک، روتختی و رختخواب - رختخواب، بالش و پتو\",\n \"slug\": \"bed-pillow-blanket\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تشک، روتختی و رختخواب - تشک تختخواب\",\n \"slug\": \"mattress\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تشک، روتختی و رختخواب - سرویس روتختی\",\n \"slug\": \"bed-sheet\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم دکوری و تزئینی - پرده، رانر و رومیزی\",\n \"slug\": \"curtains-table-cover\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم دکوری و تزئینی - آینه\",\n \"slug\": \"mirror\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم دکوری و تزئینی - ساعت دیواری و تزئینی\",\n \"slug\": \"wall-clock\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم دکوری و تزئینی - تابلو، نقاشی و عکس\",\n \"slug\": \"paintings-picture\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم دکوری و تزئینی - مجسمه، تندیس و ماکت\",\n \"slug\": \"figurines\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم دکوری و تزئینی - گل مصنوعی\",\n \"slug\": \"artificial-flower\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم دکوری و تزئینی - گل و گیاه طبیعی\",\n \"slug\": \"natural-plants\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - لوازم دکوری و تزئینی - صنایع دستی و سایر لوازم تزئینی\",\n \"slug\": \"crafts\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تهویه، سرمایش و گرمایش - آبگرمکن، پکیج و شوفاژ\",\n \"slug\": \"water-heater-package-radiator\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تهویه، سرمایش و گرمایش - بخاری، هیتر و شومینه\",\n \"slug\": \"stoves-heaters-fireplaces\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تهویه، سرمایش و گرمایش - کولر آبی\",\n \"slug\": \"water-cooler\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تهویه، سرمایش و گرمایش - کولر گازی و فن\\u200cکوئل\",\n \"slug\": \"air-conditioning-fan-coil\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - تهویه، سرمایش و گرمایش - پنکه و تصفیه\\u200cکنندهٔ هوا\",\n \"slug\": \"fan-ventilator-humidifier\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - شست\\u200cوشو و نظافت - مواد شوینده و دستمال کاغذی\",\n \"slug\": \"detergent-tissue\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - شست\\u200cوشو و نظافت - لوازم نظافت\",\n \"slug\": \"cleaning-supplies\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - شست\\u200cوشو و نظافت - بندرخت و رخت\\u200cآویز\",\n \"slug\": \"clothes-rack\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - حمام و سرویس بهداشتی - لوازم حمام\",\n \"slug\": \"bathroom-accessories\"\n },\n {\n \"display\": \"دسته بندی اصلی - خانه و آشپزخانه - حمام و سرویس بهداشتی - لوازم سرویس بهداشتی\",\n \"slug\": \"wc-accessories\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - مصالح و تجهیزات ساختمان\",\n \"slug\": \"building-equipment\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - ابزارآلات\",\n \"slug\": \"toolbox\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - ماشین\\u200cآلات صنعتی\",\n \"slug\": \"industrial-machinery\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - تجهیزات کسب\\u200cوکار\",\n \"slug\": \"work-equipment\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - عمده فروشی\",\n \"slug\": \"batch\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - تجهیزات کسب\\u200cوکار - پزشکی\",\n \"slug\": \"medical-equipment\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - تجهیزات کسب\\u200cوکار - فروشگاه و مغازه\",\n \"slug\": \"shop-and-cash\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - تجهیزات کسب\\u200cوکار - کافی\\u200cشاپ و رستوران\",\n \"slug\": \"cafe-and-restaurant\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - تجهیزات کسب\\u200cوکار - آرایشگاه و سالن\\u200cهای زیبایی\",\n \"slug\": \"barbershop-and-beautysalon\"\n },\n {\n \"display\": \"دسته بندی اصلی - تجهیزات و صنعتی - تجهیزات کسب\\u200cوکار - دفتر کار\",\n \"slug\": \"offices\"\n }\n ]\n}"
}
]
},
{
"name": "Cities",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/assets/city",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"assets",
"city"
]
},
"description": "فهرست شهرها در دیوار"
},
"response": [
{
"name": "Divar Cities",
"originalRequest": {
"method": "GET",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/assets/city",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"assets",
"city"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Sun, 09 Jul 2023 12:00:33 GMT"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Grpcgateway-Content-Type",
"value": "application/grpc"
},
{
"key": "vary",
"value": "Origin"
},
{
"key": "Access-Control-Allow-Credentials",
"value": "true"
},
{
"key": "Access-Control-Expose-Headers",
"value": "X-JWT-REFRESH, X-JWT-ERROR"
},
{
"key": "X-Datacenter",
"value": "afra"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=31536000"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "X-ZRK-US",
"value": "200"
},
{
"key": "Server",
"value": "Delivery"
},
{
"key": "X-ZRK-CS",
"value": "BYPASS"
},
{
"key": "X-ZRK-SN",
"value": "1004"
},
{
"key": "Accept-Ranges",
"value": "bytes"
}
],
"cookie": [],
"body": "{\n \"cities\": [\n {\n \"display\": \"آبادان\",\n \"slug\": \"abadan\"\n },\n {\n \"display\": \"آباده\",\n \"slug\": \"abadeh\"\n },\n {\n \"display\": \"آبدانان\",\n \"slug\": \"abdanan\"\n },\n {\n \"display\": \"آبسرد\",\n \"slug\": \"absard\"\n },\n {\n \"display\": \"آبعلی\",\n \"slug\": \"abali\"\n },\n {\n \"display\": \"آبیک\",\n \"slug\": \"abyek\"\n },\n {\n \"display\": \"آذرشهر\",\n \"slug\": \"azarshahr\"\n },\n {\n \"display\": \"آران و بیدگل\",\n \"slug\": \"aran-va-bidgol\"\n },\n {\n \"display\": \"آزادشهر\",\n \"slug\": \"azadshahr-golestan\"\n },\n {\n \"display\": \"آسارا\",\n \"slug\": \"asara\"\n },\n {\n \"display\": \"آستارا\",\n \"slug\": \"astara\"\n },\n {\n \"display\": \"آستانه اشرفیه\",\n \"slug\": \"astaneh-ashrafiyeh\"\n },\n {\n \"display\": \"آشخانه\",\n \"slug\": \"ashkhaneh\"\n },\n {\n \"display\": \"آق قلا\",\n \"slug\": \"aq-qala\"\n },\n {\n \"display\": \"آلاشت\",\n \"slug\": \"aalasht\"\n },\n {\n \"display\": \"آمل\",\n \"slug\": \"amol\"\n },\n {\n \"display\": \"ابریشم\",\n \"slug\": \"abrisham-isfahan\"\n },\n {\n \"display\": \"ابهر\",\n \"slug\": \"abhar\"\n },\n {\n \"display\": \"احمدسرگوراب\",\n \"slug\": \"ahmadsar-gourab\"\n },\n {\n \"display\": \"اراک\",\n \"slug\": \"arak\"\n },\n {\n \"display\": \"ارجمند\",\n \"slug\": \"arjmand\"\n },\n {\n \"display\": \"اردکان\",\n \"slug\": \"ardakan\"\n },\n {\n \"display\": \"اردبیل\",\n \"slug\": \"ardabil\"\n },\n {\n \"display\": \"ارومیه\",\n \"slug\": \"urmia\"\n },\n {\n \"display\": \"ازنا\",\n \"slug\": \"azna\"\n },\n {\n \"display\": \"اسدآباد\",\n \"slug\": \"asadabad\"\n },\n {\n \"display\": \"اسالم\",\n \"slug\": \"asalem\"\n },\n {\n \"display\": \"اسفراین\",\n \"slug\": \"esfarayen\"\n },\n {\n \"display\": \"اسلام\\u200c\\u200cآباد غرب\",\n \"slug\": \"eslamabad-gharb\"\n },\n {\n \"display\": \"اسلام\\u200cشهر\",\n \"slug\": \"eslamshahr\"\n },\n {\n \"display\": \"اشتهارد\",\n \"slug\": \"eshtehard\"\n },\n {\n \"display\": \"اشنویه\",\n \"slug\": \"oshnavieh\"\n },\n {\n \"display\": \"اقبالیه\",\n \"slug\": \"eqbaliyeh\"\n },\n {\n \"display\": \"الشتر\",\n \"slug\": \"aleshtar\"\n },\n {\n \"display\": \"اقلید\",\n \"slug\": \"eqlid\"\n },\n {\n \"display\": \"الوند\",\n \"slug\": \"alvand\"\n },\n {\n \"display\": \"الیگودرز\",\n \"slug\": \"aligudarz\"\n },\n {\n \"display\": \"املش\",\n \"slug\": \"amlash\"\n },\n {\n \"display\": \"امیدیه\",\n \"slug\": \"omidiyeh\"\n },\n {\n \"display\": \"امیرکلا\",\n \"slug\": \"amirkala\"\n },\n {\n \"display\": \"اندیشه\",\n \"slug\": \"andisheh-new-town\"\n },\n {\n \"display\": \"اندیمشک\",\n \"slug\": \"andimeshk\"\n },\n {\n \"display\": \"اهر\",\n \"slug\": \"ahar\"\n },\n {\n \"display\": \"ایذه\",\n \"slug\": \"izeh\"\n },\n {\n \"display\": \"ایرانشهر\",\n \"slug\": \"Iranshahr\"\n },\n {\n \"display\": \"ایزدشهر\",\n \"slug\": \"izadshahr\"\n },\n {\n \"display\": \"ایلام\",\n \"slug\": \"ilam\"\n },\n {\n \"display\": \"ایوان\",\n \"slug\": \"eyvan\"\n },\n {\n \"display\": \"بابل\",\n \"slug\": \"babol\"\n },\n {\n \"display\": \"بره\\u200cسر\",\n \"slug\": \"barah-sar\"\n },\n {\n \"display\": \"بابلسر\",\n \"slug\": \"babolsar\"\n },\n {\n \"display\": \"بافت\",\n \"slug\": \"baft\"\n },\n {\n \"display\": \"بافق\",\n \"slug\": \"bafq\"\n },\n {\n \"display\": \"باقرشهر\",\n \"slug\": \"baghershahr\"\n },\n {\n \"display\": \"بانه\",\n \"slug\": \"baneh\"\n },\n {\n \"display\": \"بجنورد\",\n \"slug\": \"bojnurd\"\n },\n {\n \"display\": \"برازجان\",\n \"slug\": \"borazjan\"\n },\n {\n \"display\": \"بردسکن\",\n \"slug\": \"bardaskan\"\n },\n {\n \"display\": \"بلده\",\n \"slug\": \"baladeh\"\n },\n {\n \"display\": \"بردسیر\",\n \"slug\": \"bardsir\"\n },\n {\n \"display\": \"بروجرد\",\n \"slug\": \"borujerd\"\n },\n {\n \"display\": \"بروجن\",\n \"slug\": \"boroujen\"\n },\n {\n \"display\": \"بلوک\",\n \"slug\": \"boluk\"\n },\n {\n \"display\": \"بم\",\n \"slug\": \"bam\"\n },\n {\n \"display\": \"بناب\",\n \"slug\": \"bonab\"\n },\n {\n \"display\": \"بندر امام خمینی\",\n \"slug\": \"bandar-Imam-khomeini\"\n },\n {\n \"display\": \"بندر انزلی\",\n \"slug\": \"bandar-anzali\"\n },\n {\n \"display\": \"بندر ترکمن\",\n \"slug\": \"bandar-torkaman\"\n },\n {\n \"display\": \"بندر دیر\",\n \"slug\": \"dayyer\"\n },\n {\n \"display\": \"بندر کنگان\",\n \"slug\": \"bandar-kangan\"\n },\n {\n \"display\": \"بندر گناوه\",\n \"slug\": \"bandar-ganaveh\"\n },\n {\n \"display\": \"بندر ماهشهر\",\n \"slug\": \"mahshahr\"\n },\n {\n \"display\": \"بندرعباس\",\n \"slug\": \"bandar-abbas\"\n },\n {\n \"display\": \"بوشهر\",\n \"slug\": \"bushehr\"\n },\n {\n \"display\": \"بوکان\",\n \"slug\": \"bukan\"\n },\n {\n \"display\": \"بومهن\",\n \"slug\": \"bumehen\"\n },\n {\n \"display\": \"بهار\",\n \"slug\": \"bahar-city\"\n },\n {\n \"display\": \"بهبهان\",\n \"slug\": \"behbahan\"\n },\n {\n \"display\": \"بهشهر\",\n \"slug\": \"behshahr\"\n },\n {\n \"display\": \"بیجار\",\n \"slug\": \"bijar\"\n },\n {\n \"display\": \"بیرجند\",\n \"slug\": \"birjand\"\n },\n {\n \"display\": \"بیستون\",\n \"slug\": \"bisotun\"\n },\n {\n \"display\": \"پارس\\u200cآباد\",\n \"slug\": \"parsabad\"\n },\n {\n \"display\": \"پاکدشت\",\n \"slug\": \"pakdasht-city\"\n },\n {\n \"display\": \"بهنمیر\",\n \"slug\": \"bahnamir\"\n },\n {\n \"display\": \"پردیس\",\n \"slug\": \"pardis-city\"\n },\n {\n \"display\": \"پره\\u200cسر\",\n \"slug\": \"pareh-sar\"\n },\n {\n \"display\": \"پرند\",\n \"slug\": \"parand-city\"\n },\n {\n \"display\": \"پل سفید\",\n \"slug\": \"polsefid\"\n },\n {\n \"display\": \"پلدختر\",\n \"slug\": \"pol-dokhtar\"\n },\n {\n \"display\": \"پیرانشهر\",\n \"slug\": \"piranshahr\"\n },\n {\n \"display\": \"پیشوا\",\n \"slug\": \"pishva\"\n },\n {\n \"display\": \"تاکستان\",\n \"slug\": \"takestan\"\n },\n {\n \"display\": \"تالش\",\n \"slug\": \"talesh\"\n },\n {\n \"display\": \"تایباد\",\n \"slug\": \"taybad\"\n },\n {\n \"display\": \"تخت\",\n \"slug\": \"takht\"\n },\n {\n \"display\": \"تربت جام\",\n \"slug\": \"torbat-jam\"\n },\n {\n \"display\": \"تربت\\u200cحیدریه\",\n \"slug\": \"torbat-heydariyeh\"\n },\n {\n \"display\": \"توتکابن\",\n \"slug\": \"toutkabon\"\n },\n {\n \"display\": \"تفت\",\n \"slug\": \"taft\"\n },\n {\n \"display\": \"تنکابن\",\n \"slug\": \"tonekabon\"\n },\n {\n \"display\": \"تنکمان\",\n \"slug\": \"tankaman\"\n },\n {\n \"display\": \"تویسرکان\",\n \"slug\": \"tuyserkan\"\n },\n {\n \"display\": \"جیرنده\",\n \"slug\": \"jirandeh\"\n },\n {\n \"display\": \"جم\",\n \"slug\": \"jam\"\n },\n {\n \"display\": \"جوادآباد\",\n \"slug\": \"javadabad\"\n },\n {\n \"display\": \"جوانرود\",\n \"slug\": \"javanrud\"\n },\n {\n \"display\": \"جویبار\",\n \"slug\": \"juybar\"\n },\n {\n \"display\": \"جهرم\",\n \"slug\": \"jahrom\"\n },\n {\n \"display\": \"جیرفت\",\n \"slug\": \"jiroft\"\n },\n {\n \"display\": \"چابکسر\",\n \"slug\": \"chaboksar\"\n },\n {\n \"display\": \"چابهار\",\n \"slug\": \"chabahar\"\n },\n {\n \"display\": \"چاف و چمخاله\",\n \"slug\": \"chaf-chamkhale\"\n },\n {\n \"display\": \"چالوس\",\n \"slug\": \"chalus\"\n },\n {\n \"display\": \"چمران\",\n \"slug\": \"chamran-town\"\n },\n {\n \"display\": \"چمستان\",\n \"slug\": \"chamestan\"\n },\n {\n \"display\": \"چناران\",\n \"slug\": \"chenaran\"\n },\n {\n \"display\": \"چهارباغ\",\n \"slug\": \"charbagh-alborz\"\n },\n {\n \"display\": \"چهاردانگه\",\n \"slug\": \"chahar-dangeh\"\n },\n {\n \"display\": \"چوبر\",\n \"slug\": \"chobar\"\n },\n {\n \"display\": \"حمیدیا\",\n \"slug\": \"hamidia\"\n },\n {\n \"display\": \"حمیدیه\",\n \"slug\": \"hamidiyeh\"\n },\n {\n \"display\": \"خاش\",\n \"slug\": \"khash\"\n },\n {\n \"display\": \"حویق\",\n \"slug\": \"haviq\"\n },\n {\n \"display\": \"خرم\\u200cآباد\",\n \"slug\": \"khorramabad\"\n },\n {\n \"display\": \"خرمدره\",\n \"slug\": \"khorramdarreh\"\n },\n {\n \"display\": \"خرمشهر\",\n \"slug\": \"khorramshahr\"\n },\n {\n \"display\": \"خشکبیجار\",\n \"slug\": \"khoshkbijar\"\n },\n {\n \"display\": \"خلخال\",\n \"slug\": \"khalkhal\"\n },\n {\n \"display\": \"خمام\",\n \"slug\": \"khomam\"\n },\n {\n \"display\": \"خمین\",\n \"slug\": \"khomein\"\n },\n {\n \"display\": \"خمینی\\u200cشهر\",\n \"slug\": \"khomeyni-shahr\"\n },\n {\n \"display\": \"خواف\",\n \"slug\": \"khaf\"\n },\n {\n \"display\": \"خوانسار\",\n \"slug\": \"khansar\"\n },\n {\n \"display\": \"خور\",\n \"slug\": \"khoour\"\n },\n {\n \"display\": \"خلیل شهر\",\n \"slug\": \"khalil-shahr\"\n },\n {\n \"display\": \"خور\",\n \"slug\": \"khour\"\n },\n {\n \"display\": \"خورموج\",\n \"slug\": \"khormoj\"\n },\n {\n \"display\": \"خوی\",\n \"slug\": \"khoy\"\n },\n {\n \"display\": \"داراب\",\n \"slug\": \"darab\"\n },\n {\n \"display\": \"داران\",\n \"slug\": \"daran\"\n },\n {\n \"display\": \"دامغان\",\n \"slug\": \"damghan\"\n },\n {\n \"display\": \"خوش\\u200cرودپی\",\n \"slug\": \"khoshroud-pey\"\n },\n {\n \"display\": \"درگهان\",\n \"slug\": \"dargahan\"\n },\n {\n \"display\": \"دزفول\",\n \"slug\": \"dezful\"\n },\n {\n \"display\": \"دلیجان\",\n \"slug\": \"delijan\"\n },\n {\n \"display\": \"دماوند\",\n \"slug\": \"damavand\"\n },\n {\n \"display\": \"دوگنبدان\",\n \"slug\": \"dogonbadan\"\n },\n {\n \"display\": \"دورود\",\n \"slug\": \"dorud\"\n },\n {\n \"display\": \"دهدشت\",\n \"slug\": \"dehdasht\"\n },\n {\n \"display\": \"دهگلان\",\n \"slug\": \"dehgolan\"\n },\n {\n \"display\": \"دهلران\",\n \"slug\": \"dehloran\"\n },\n {\n \"display\": \"دیلمان\",\n \"slug\": \"deylaman\"\n },\n {\n \"display\": \"رامسر\",\n \"slug\": \"ramsar\"\n },\n {\n \"display\": \"رانکوه\",\n \"slug\": \"rankouh\"\n },\n {\n \"display\": \"رحیم\\u200cآباد\",\n \"slug\": \"raheem-abad\"\n },\n {\n \"display\": \"رستم\\u200cآباد\",\n \"slug\": \"rostam-abad\"\n },\n {\n \"display\": \"رامشیر\",\n \"slug\": \"ramshir\"\n },\n {\n \"display\": \"رامهرمز\",\n \"slug\": \"ramhormoz\"\n },\n {\n \"display\": \"رباط\\u200cکریم\",\n \"slug\": \"robat-karim\"\n },\n {\n \"display\": \"رستمکلا\",\n \"slug\": \"rostamkola\"\n },\n {\n \"display\": \"رضوانشهر\",\n \"slug\": \"rezvanshahr\"\n },\n {\n \"display\": \"رفسنجان\",\n \"slug\": \"rafsanjan\"\n },\n {\n \"display\": \"رودبار\",\n \"slug\": \"rudbar\"\n },\n {\n \"display\": \"رودبنه\",\n \"slug\": \"roudbaneh\"\n },\n {\n \"display\": \"رودسر\",\n \"slug\": \"rudsar\"\n },\n {\n \"display\": \"رودهن\",\n \"slug\": \"rudehen\"\n },\n {\n \"display\": \"رویان\",\n \"slug\": \"royan\"\n },\n {\n \"display\": \"ری\",\n \"slug\": \"shahre-rey\"\n },\n {\n \"display\": \"زابل\",\n \"slug\": \"zabol\"\n },\n {\n \"display\": \"زاهدان\",\n \"slug\": \"zahedan\"\n },\n {\n \"display\": \"رینه\",\n \"slug\": \"reyneh\"\n },\n {\n \"display\": \"زیرآب\",\n \"slug\": \"ziraab\"\n },\n {\n \"display\": \"زرقان\",\n \"slug\": \"zarghan\"\n },\n {\n \"display\": \"زرند\",\n \"slug\": \"zarand\"\n },\n {\n \"display\": \"زنجان\",\n \"slug\": \"zanjan\"\n },\n {\n \"display\": \"زهک\",\n \"slug\": \"zahak\"\n },\n {\n \"display\": \"زیباکنار\",\n \"slug\": \"zibakenar\"\n },\n {\n \"display\": \"ساری\",\n \"slug\": \"sari\"\n },\n {\n \"display\": \"سامان\",\n \"slug\": \"saman-city\"\n },\n {\n \"display\": \"ساوه\",\n \"slug\": \"saveh\"\n },\n {\n \"display\": \"سبزوار\",\n \"slug\": \"sabzevar\"\n },\n {\n \"display\": \"سراب\",\n \"slug\": \"sarab\"\n },\n {\n \"display\": \"سراوان-سیستان و بلوچستان\",\n \"slug\": \"saravan\"\n },\n {\n \"display\": \"سرپل ذهاب\",\n \"slug\": \"sarpol-zahab\"\n },\n {\n \"display\": \"سرخرود\",\n \"slug\": \"sorkhrood\"\n },\n {\n \"display\": \"سردشت\",\n \"slug\": \"sardasht\"\n },\n {\n \"display\": \"سرعین\",\n \"slug\": \"sarein\"\n },\n {\n \"display\": \"سقز\",\n \"slug\": \"saqqez\"\n },\n {\n \"display\": \"سلماس\",\n \"slug\": \"salmas\"\n },\n {\n \"display\": \"سلمان\\u200cشهر\",\n \"slug\": \"salman-shahr\"\n },\n {\n \"display\": \"سمنان\",\n \"slug\": \"semnan\"\n },\n {\n \"display\": \"سمیرم\",\n \"slug\": \"semirom\"\n },\n {\n \"display\": \"سنگر\",\n \"slug\": \"sangar\"\n },\n {\n \"display\": \"سنقر\",\n \"slug\": \"sonqor\"\n },\n {\n \"display\": \"سنندج\",\n \"slug\": \"sanandaj\"\n },\n {\n \"display\": \"سوسنگرد\",\n \"slug\": \"susangerd\"\n },\n {\n \"display\": \"سهند\",\n \"slug\": \"sahand\"\n },\n {\n \"display\": \"سیاهکل\",\n \"slug\": \"siahkal\"\n },\n {\n \"display\": \"سیرجان\",\n \"slug\": \"sirjan\"\n },\n {\n \"display\": \"سی\\u200cسخت\",\n \"slug\": \"sisakht\"\n },\n {\n \"display\": \"شادگان\",\n \"slug\": \"shadeghan\"\n },\n {\n \"display\": \"شازند\",\n \"slug\": \"shazand\"\n },\n {\n \"display\": \"شال\",\n \"slug\": \"shal\"\n },\n {\n \"display\": \"شاندیز\",\n \"slug\": \"shandiz-city\"\n },\n {\n \"display\": \"شاهدشهر\",\n \"slug\": \"shahedshahr\"\n },\n {\n \"display\": \"شاهین دژ\",\n \"slug\": \"shahin-dej\"\n },\n {\n \"display\": \"شاهرود\",\n \"slug\": \"shahrud\"\n },\n {\n \"display\": \"شاهین\\u200cشهر\",\n \"slug\": \"shahin-shahr\"\n },\n {\n \"display\": \"سورک\",\n \"slug\": \"sourek\"\n },\n {\n \"display\": \"شفت\",\n \"slug\": \"shaft\"\n },\n {\n \"display\": \"شمشک\",\n \"slug\": \"shemshak\"\n },\n {\n \"display\": \"شوش\",\n \"slug\": \"shush\"\n },\n {\n \"display\": \"شوشتر\",\n \"slug\": \"shushtar\"\n },\n {\n \"display\": \"شهرکرد\",\n \"slug\": \"shahrekord\"\n },\n {\n \"display\": \"شهریار\",\n \"slug\": \"shahriar-city\"\n },\n {\n \"display\": \"شیروان\",\n \"slug\": \"shirvan\"\n },\n {\n \"display\": \"شلمان\",\n \"slug\": \"shelman\"\n },\n {\n \"display\": \"شیرگاه\",\n \"slug\": \"shirgah\"\n },\n {\n \"display\": \"صباشهر\",\n \"slug\": \"sabashahr\"\n },\n {\n \"display\": \"صحنه\",\n \"slug\": \"sahneh\"\n },\n {\n \"display\": \"صدرا-فارس\",\n \"slug\": \"sadra\"\n },\n {\n \"display\": \"صفادشت\",\n \"slug\": \"safadasht-industrial-city\"\n },\n {\n \"display\": \"صومعه\\u200cسرا\",\n \"slug\": \"someh-sara\"\n },\n {\n \"display\": \"طالقان\",\n \"slug\": \"taleqan\"\n },\n {\n \"display\": \"طبس\",\n \"slug\": \"tabas\"\n },\n {\n \"display\": \"طرقبه\",\n \"slug\": \"torghabeh-city\"\n },\n {\n \"display\": \"عباس\\u200cآباد\",\n \"slug\": \"abbasabad-mazandaran\"\n },\n {\n \"display\": \"علی\\u200cآباد کتول\",\n \"slug\": \"aliabad-katul\"\n },\n {\n \"display\": \"فرح آباد\",\n \"slug\": \"farahabad\"\n },\n {\n \"display\": \"فرخ\\u200cشهر\",\n \"slug\": \"farrokhshahr\"\n },\n {\n \"display\": \"فردوس\",\n \"slug\": \"ferdows\"\n },\n {\n \"display\": \"فردوسیه\",\n \"slug\": \"ferdosiye\"\n },\n {\n \"display\": \"فردیس\",\n \"slug\": \"fardis-city\"\n },\n {\n \"display\": \"فریدون\\u200cکنار\",\n \"slug\": \"fereydunkenar\"\n },\n {\n \"display\": \"فسا\",\n \"slug\": \"fasa-city\"\n },\n {\n \"display\": \"فشم\",\n \"slug\": \"fasham-city\"\n },\n {\n \"display\": \"فلاورجان\",\n \"slug\": \"falavarjan\"\n },\n {\n \"display\": \"فریم\",\n \"slug\": \"farim\"\n },\n {\n \"display\": \"فولادشهر\",\n \"slug\": \"foolad-shahr\"\n },\n {\n \"display\": \"فومن\",\n \"slug\": \"fuman\"\n },\n {\n \"display\": \"فیروزآباد\",\n \"slug\": \"firuzabad\"\n },\n {\n \"display\": \"قائم\\u200cشهر\",\n \"slug\": \"qaem-shahr\"\n },\n {\n \"display\": \"فیروزکوه\",\n \"slug\": \"firuzkooh\"\n },\n {\n \"display\": \"قاسم\\u200cآباد (خواف)\",\n \"slug\": \"qasemabad-khaf\"\n },\n {\n \"display\": \"قاين\",\n \"slug\": \"ghayen\"\n },\n {\n \"display\": \"قدس\",\n \"slug\": \"qods-city\"\n },\n {\n \"display\": \"قرچک\",\n \"slug\": \"qarchak-city\"\n },\n {\n \"display\": \"قروه\",\n \"slug\": \"qorveh\"\n },\n {\n \"display\": \"قزوین\",\n \"slug\": \"qazvin\"\n },\n {\n \"display\": \"قشم\",\n \"slug\": \"qeshm\"\n },\n {\n \"display\": \"قمصر\",\n \"slug\": \"ghamsar\"\n },\n {\n \"display\": \"قوچان\",\n \"slug\": \"quchan\"\n },\n {\n \"display\": \"کتالم و سادات شهر\",\n \"slug\": \"katalem-sadatshahr\"\n },\n {\n \"display\": \"قیدار\",\n \"slug\": \"qeydar\"\n },\n {\n \"display\": \"کازرون\",\n \"slug\": \"kazeroon\"\n },\n {\n \"display\": \"کاشان\",\n \"slug\": \"kashan\"\n },\n {\n \"display\": \"کامیاران\",\n \"slug\": \"kamyaran\"\n },\n {\n \"display\": \"کبودراهنگ\",\n \"slug\": \"kabudrahang\"\n },\n {\n \"display\": \"کردکوی\",\n \"slug\": \"Kordkuy\"\n },\n {\n \"display\": \"کرمان\",\n \"slug\": \"kerman\"\n },\n {\n \"display\": \"کلاچای\",\n \"slug\": \"kelachay\"\n },\n {\n \"display\": \"کلارآباد\",\n \"slug\": \"kelarabad\"\n },\n {\n \"display\": \"کلاردشت\",\n \"slug\": \"kelarestan\"\n },\n {\n \"display\": \"کلاله\",\n \"slug\": \"kalale\"\n },\n {\n \"display\": \"کوهی\\u200cخیل\",\n \"slug\": \"kouhi-kheyl\"\n },\n {\n \"display\": \"کیاسر\",\n \"slug\": \"kiasar\"\n },\n {\n \"display\": \"کنارک\",\n \"slug\": \"konarak\"\n },\n {\n \"display\": \"کنگاور\",\n \"slug\": \"kangavar\"\n },\n {\n \"display\": \"کوچصفهان\",\n \"slug\": \"kouchesfahan\"\n },\n {\n \"display\": \"کوهدشت\",\n \"slug\": \"kuhdasht\"\n },\n {\n \"display\": \"کوهسار\",\n \"slug\": \"koohsar\"\n },\n {\n \"display\": \"کهریزک\",\n \"slug\": \"kahrizak\"\n },\n {\n \"display\": \"کیاکلا\",\n \"slug\": \"kiakola\"\n },\n {\n \"display\": \"کومله\",\n \"slug\": \"koumeleh\"\n },\n {\n \"display\": \"کهنوج\",\n \"slug\": \"kahnooj\"\n },\n {\n \"display\": \"کیاشهر\",\n \"slug\": \"kiashahr\"\n },\n {\n \"display\": \"گتاب\",\n \"slug\": \"gatab\"\n },\n {\n \"display\": \"کیش\",\n \"slug\": \"kish\"\n },\n {\n \"display\": \"گالیکش\",\n \"slug\": \"galikesh\"\n },\n {\n \"display\": \"کیلان\",\n \"slug\": \"kilan\"\n },\n {\n \"display\": \"گزنک\",\n \"slug\": \"gazanak\"\n },\n {\n \"display\": \"گرگان\",\n \"slug\": \"gorgan\"\n },\n {\n \"display\": \"گرمدره\",\n \"slug\": \"garmdareh\"\n },\n {\n \"display\": \"گرمسار\",\n \"slug\": \"garmsar\"\n },\n {\n \"display\": \"گرمی\",\n \"slug\": \"germi\"\n },\n {\n \"display\": \"گلبهار\",\n \"slug\": \"golbahar-city\"\n },\n {\n \"display\": \"گلپایگان\",\n \"slug\": \"golpayegan\"\n },\n {\n \"display\": \"گلوگاه\",\n \"slug\": \"galougah-babol\"\n },\n {\n \"display\": \"گلستان\",\n \"slug\": \"golestan-baharestan\"\n },\n {\n \"display\": \"گوراب زرمیخ\",\n \"slug\": \"gourab-zarmikh\"\n },\n {\n \"display\": \"گمیشان\",\n \"slug\": \"gomishan\"\n },\n {\n \"display\": \"گناباد\",\n \"slug\": \"gonabad\"\n },\n {\n \"display\": \"گنبد کاووس\",\n \"slug\": \"gonbad-kavus\"\n },\n {\n \"display\": \"گهواره\",\n \"slug\": \"gahvareh\"\n },\n {\n \"display\": \"لار\",\n \"slug\": \"lar\"\n },\n {\n \"display\": \"لامرد\",\n \"slug\": \"lamerd\"\n },\n {\n \"display\": \"لاهیجان\",\n \"slug\": \"lahijan\"\n },\n {\n \"display\": \"لردگان\",\n \"slug\": \"lordegan\"\n },\n {\n \"display\": \"لشت نشا\",\n \"slug\": \"lashtenesha\"\n },\n {\n \"display\": \"لنجان\",\n \"slug\": \"lenjan\"\n },\n {\n \"display\": \"لنگرود\",\n \"slug\": \"langarud\"\n },\n {\n \"display\": \"لوشان\",\n \"slug\": \"loshan\"\n },\n {\n \"display\": \"لواسان\",\n \"slug\": \"lavasan-city\"\n },\n {\n \"display\": \"لولمان\",\n \"slug\": \"loulman\"\n },\n {\n \"display\": \"لوندویل\",\n \"slug\": \"lavandevil\"\n },\n {\n \"display\": \"لیسار\",\n \"slug\": \"lisar\"\n },\n {\n \"display\": \"ماسال\",\n \"slug\": \"masal\"\n },\n {\n \"display\": \"ماسوله\",\n \"slug\": \"masuleh\"\n },\n {\n \"display\": \"ماکلوان\",\n \"slug\": \"makloan\"\n },\n {\n \"display\": \"منجیل\",\n \"slug\": \"manjil\"\n },\n {\n \"display\": \"ماکو\",\n \"slug\": \"maku\"\n },\n {\n \"display\": \"ماهان\",\n \"slug\": \"mahan\"\n },\n {\n \"display\": \"ماهدشت\",\n \"slug\": \"mahdasht-city\"\n },\n {\n \"display\": \"مبارکه\",\n \"slug\": \"mobarakeh\"\n },\n {\n \"display\": \"محلات\",\n \"slug\": \"mahalat\"\n },\n {\n \"display\": \"محمدشهر\",\n \"slug\": \"mohammad-shahr\"\n },\n {\n \"display\": \"محمدیه-قزوین\",\n \"slug\": \"mohammadieh\"\n },\n {\n \"display\": \"محمودآباد\",\n \"slug\": \"mahmudabad\"\n },\n {\n \"display\": \"مراغه\",\n \"slug\": \"maragheh\"\n },\n {\n \"display\": \"مرند\",\n \"slug\": \"marand\"\n },\n {\n \"display\": \"مرودشت\",\n \"slug\": \"marvdasht-city\"\n },\n {\n \"display\": \"مریوان\",\n \"slug\": \"marivan\"\n },\n {\n \"display\": \"مشکین\\u200cشهر\",\n \"slug\": \"meshgin-shahr\"\n },\n {\n \"display\": \"مسجد سلیمان\",\n \"slug\": \"masjed-e-soleyman\"\n },\n {\n \"display\": \"ملایر\",\n \"slug\": \"malayer\"\n },\n {\n \"display\": \"ملک\\u200cآباد\",\n \"slug\": \"molkabad\"\n },\n {\n \"display\": \"مهاباد\",\n \"slug\": \"mahabad\"\n },\n {\n \"display\": \"مهاجران\",\n \"slug\": \"mohajeran\"\n },\n {\n \"display\": \"مهر\",\n \"slug\": \"mohr\"\n },\n {\n \"display\": \"مرزن\\u200cآباد\",\n \"slug\": \"marzan-abad\"\n },\n {\n \"display\": \"مهران\",\n \"slug\": \"mehran\"\n },\n {\n \"display\": \"مهریز\",\n \"slug\": \"mehriz\"\n },\n {\n \"display\": \"میاندوآب\",\n \"slug\": \"miandoab\"\n },\n {\n \"display\": \"میانه\",\n \"slug\": \"mianeh\"\n },\n {\n \"display\": \"میبد\",\n \"slug\": \"meybod\"\n },\n {\n \"display\": \"مرزیکلا\",\n \"slug\": \"marzikola\"\n },\n {\n \"display\": \"میناب\",\n \"slug\": \"minab\"\n },\n {\n \"display\": \"مینودشت\",\n \"slug\": \"minoodasht\"\n },\n {\n \"display\": \"نجف\\u200cآباد\",\n \"slug\": \"najafabad\"\n },\n {\n \"display\": \"نسیم\\u200cشهر\",\n \"slug\": \"nasimshahr\"\n },\n {\n \"display\": \"نشتارود\",\n \"slug\": \"nashtarud\"\n },\n {\n \"display\": \"نظرآباد\",\n \"slug\": \"nazarabad\"\n },\n {\n \"display\": \"نقده\",\n \"slug\": \"naqadeh\"\n },\n {\n \"display\": \"نکا\",\n \"slug\": \"neka\"\n },\n {\n \"display\": \"نمین\",\n \"slug\": \"namin\"\n },\n {\n \"display\": \"نور\",\n \"slug\": \"nur\"\n },\n {\n \"display\": \"نورآباد\",\n \"slug\": \"nurabad\"\n },\n {\n \"display\": \"نورآباد ممسنی\",\n \"slug\": \"norabad\"\n },\n {\n \"display\": \"نوشهر\",\n \"slug\": \"nowshahr\"\n },\n {\n \"display\": \"نهاوند\",\n \"slug\": \"nahavand\"\n },\n {\n \"display\": \"نی\\u200cریز\",\n \"slug\": \"neyriz\"\n },\n {\n \"display\": \"نیشابور\",\n \"slug\": \"neyshabur\"\n },\n {\n \"display\": \"وحیدیه\",\n \"slug\": \"vahidieh\"\n },\n {\n \"display\": \"ورامین\",\n \"slug\": \"varamin-city\"\n },\n {\n \"display\": \"هرسین\",\n \"slug\": \"harsin\"\n },\n {\n \"display\": \"هرمز\",\n \"slug\": \"hormuz\"\n },\n {\n \"display\": \"هشتگرد\",\n \"slug\": \"hashtgerd-city\"\n },\n {\n \"display\": \"همدان\",\n \"slug\": \"hamedan\"\n },\n {\n \"display\": \"هندیجان\",\n \"slug\": \"hendijan\"\n },\n {\n \"display\": \"یاسوج\",\n \"slug\": \"yasuj\"\n },\n {\n \"display\": \"یزد\",\n \"slug\": \"yazd\"\n },\n {\n \"display\": \"تهران\",\n \"slug\": \"tehran\"\n },\n {\n \"display\": \"مشهد\",\n \"slug\": \"mashhad\"\n },\n {\n \"display\": \"کرج\",\n \"slug\": \"karaj\"\n },\n {\n \"display\": \"شیراز\",\n \"slug\": \"shiraz\"\n },\n {\n \"display\": \"اصفهان\",\n \"slug\": \"isfahan\"\n },\n {\n \"display\": \"اهواز\",\n \"slug\": \"ahvaz\"\n },\n {\n \"display\": \"تبریز\",\n \"slug\": \"tabriz\"\n },\n {\n \"display\": \"کرمانشاه\",\n \"slug\": \"kermanshah\"\n },\n {\n \"display\": \"قم\",\n \"slug\": \"qom\"\n },\n {\n \"display\": \"رشت\",\n \"slug\": \"rasht\"\n }\n ]\n}"
}
]
},
{
"name": "Districts",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "{{host}}/v1/open-platform/assets/district",
"host": [
"{{host}}"
],
"path": [
"v1",
"open-platform",
"assets",
"district"
]
},
"description": "فهرست محلههای شهرها در دیوار \n\nممکن است محلههای بعضی شهرها خالی باشند."
},
"response": [
{