-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathnaver-openapi-swagger.json
1627 lines (1627 loc) · 50.2 KB
/
naver-openapi-swagger.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
{
"swagger": "2.0",
"info": {
"description": "Naver Open API - Restful spec. You can find out more about Naver Open API at [https://developers.naver.com](https://developers.naver.com)",
"version": "1.2.0",
"title": "Naver Open API",
"termsOfService": "https://developers.naver.com/products/terms"
},
"host": "openapi.naver.com",
"basePath": "/",
"tags": [
{
"name": "Clova",
"description": "Naver A.I platform and APIs",
"externalDocs": {
"description": "Find out more",
"url": "https://developers.naver.com/products/clova/cic"
}
},
{
"name": "Papago",
"description": "Naver Machine Learning Translation APIs"
},
{
"name": "Naver Login",
"description": "Login with Naver Id"
},
{
"name": "Naver Services",
"description": "Naver data trend, search, shorten url, captcha APIs"
},
{
"name": "Maps",
"description": "Naver Mpas JS, geocode, static map APIs"
}
],
"schemes": [
"https"
],
"paths": {
"/v1/vision/face": {
"post": {
"tags": [
"Clova"
],
"summary": "Clova Face Recognition (얼굴감지)",
"description": "얼굴 이미지를 입력하면 얼굴 감지 결과를 리턴합니다.",
"operationId": "vision.face",
"consumes": [
"multipart/form-data"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "image",
"in": "formData",
"description": "이미지",
"required": true,
"type": "file"
}
],
"responses": {
"200": {
"description": "OK"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/vision/celebrity": {
"post": {
"tags": [
"Clova"
],
"summary": "Clova Face Recognition (유명인 얼굴인식)",
"description": "얼굴 이미지를 입력하면 유명인과의 닮은 정도를 리턴합니다.",
"operationId": "vision.celebrity",
"consumes": [
"multipart/form-data"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "image",
"in": "formData",
"description": "이미지",
"required": true,
"type": "file"
}
],
"responses": {
"200": {
"description": "OK"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/voice/tts.bin": {
"post": {
"tags": [
"Clova"
],
"summary": "Clova Speech Synthesis (음성합성)",
"description": "입력된 텍스트를 성우의 낭독 음성으로 합성해 주는 REST API입니다.",
"operationId": "voice.tts",
"consumes": [
"application/x-www-form-urlencoded"
],
"produces": [
"audio/mpeg"
],
"parameters": [
{
"name": "speaker",
"in": "formData",
"description": "음성 합성할 목소리 설정: ( mijin:미진(한국어, 여성), jinho:진호(한국어, 남성), clara:클라라(영어,여성), matt:매튜(영어, 남성), yuri:유리(일본어, 여성), shinji:신지(일본어, 남성), meimei:메이메이(중국어, 여성))",
"required": true,
"default": "mijin",
"type": "string"
},
{
"name": "speed",
"in": "formData",
"description": "-5 ~ 5 사이 정수로 -5면 0.5배 빠른, 5면 0.5배 느린, 0이면 정상 속도의 목소리로 합성",
"required": true,
"default": "0",
"type": "string"
},
{
"name": "text",
"in": "formData",
"description": "음성합성할 문장이며 UTF-8만 지원",
"required": true,
"default": "음성합성 테스트 입니다.",
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/datalab/search": {
"post": {
"tags": [
"Naver Services"
],
"summary": "Search-통합 검색어 트렌드",
"description": "입력된 주제어와 해당하는 검색어 그룹에 대하여 네이버 통합검색에 대한 기간별 트렌드 데이터를 리턴합니다.",
"operationId": "search.datalab",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "",
"description": "검색 정보 요청 JSON",
"required": true,
"schema": {
"$ref": "#/definitions/DatalabSearchReq"
}
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/search/{serviceid}": {
"get": {
"tags": [
"Naver Services"
],
"summary": "Search-기본 검색",
"description": "네이버 블로그/뉴스/책/백과사전/카페글/지식iN/웹문서/이미지/쇼핑/전문자료/성인검색어 판별 /오타변환 대상 검색입니다. ",
"operationId": "search.service",
"consumes": [
"plain/text"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "serviceid",
"in": "path",
"description": "검색대상<br/> 블로그-> blog, 뉴스-> news, 책-> book, 백과사전->encyc, 카페글->cafearticle, 지식인->kin, 웹문서->webkr, 이미지->image, 쇼핑->shop, 전문자료->doc, 성인검색어 판별->adult, 오타변환->errata",
"required": true,
"default": "blog",
"type": "string"
},
{
"name": "query",
"in": "query",
"description": "검색어(UTF-8인코딩 필요)",
"required": true,
"default": "진주",
"type": "string"
},
{
"name": "display",
"in": "query",
"description": "검색결과 출력건수 (10 ~ 100) <br/> *적용 대상: blog/ news/ book/ encyc/ cafearticle/ kin/ webkr/ image/ shop/ doc <br/>* 비적용 대상: adult/ errata",
"required": false,
"default": 10,
"type": "integer"
},
{
"name": "start",
"in": "query",
"description": "검색 시작 위치 (1~ 1000)<br/> * 주의:**1000 이상은 불가**<br/> * 적용 대상: blog/ news/ book/ encyc/ cafearticle/ kin/ webkr/ image/ shop/ doc<br/>* 비적용 대상: adult/ errata",
"required": false,
"default": 1,
"type": "integer"
},
{
"name": "sort",
"in": "query",
"description": "정렬 옵션: sim (유사도순), date (날짜순)<br/> * 적용 대상: blog/ news/ book/ cafearticle/ kin /image/ shop <br/> * 비적용 대상: encyc/ webkr/ doc/adult/ errata <br/> - shop 추가 옵션: asc(가격오름차순) ,dsc(가격내림차순)<br/> - book 추가 옵션: count(판매량순)",
"required": false,
"default": "sim",
"type": "string"
},
{
"name": "filter",
"in": "query",
"description": "이미지 사이즈 필터 옵션 (***이미지 검색만 해당!!!***)<br/>사이즈 필터 옵션: all(전체), large(큰 사이즈), medium(중간 사이즈), small(작은 사이즈)",
"required": false,
"default": "all",
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/search/book_adv": {
"get": {
"tags": [
"Naver Services"
],
"summary": "Search-책 상세 검색",
"description": "책을 다양한 옵션으로 상세하게 검색할 수 있는 API입니다. <br/>책 제목(d_titl), 저자명(d_auth), 목차(d_cont), ISBN(d_isbn), 출판사(d_publ) 5개 항목 중에서 1개 이상 값을 입력해야 합니다.",
"operationId": "search.book_adv",
"consumes": [
"plain/text"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "d_titl",
"in": "query",
"description": "책 제목",
"required": false,
"default": "api",
"type": "string"
},
{
"name": "d_auth",
"in": "query",
"description": "저자명",
"required": false,
"default": "okgosu",
"type": "string"
},
{
"name": "d_cont",
"in": "query",
"description": "목차 검색",
"required": false,
"default": "서문",
"type": "string"
},
{
"name": "d_isbn",
"in": "query",
"description": "ISBN 검색",
"required": false,
"default": "9788960771291",
"type": "string"
},
{
"name": "d_publ",
"in": "query",
"description": "출판사 검색",
"required": false,
"default": "에이콘",
"type": "string"
},
{
"name": "d_dafr",
"in": "query",
"description": "출간 시작일(예: 20000203)",
"required": false,
"default": "20000203",
"type": "string"
},
{
"name": "d_dato",
"in": "query",
"description": "출간 종료일(예:20000203)",
"required": false,
"default": "20000203",
"type": "string"
},
{
"name": "d_catg",
"in": "query",
"description": "책 검색 카테고리 : [상세목록링크](https://developers.naver.com/inc/devcenter/downloads/categoryList.txt)",
"required": false,
"default": "100",
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/search/local": {
"get": {
"tags": [
"Naver Services"
],
"summary": "Search-지역 검색",
"description": "네이버 지역 서비스에 등록된 각 지역별 업체 및 상호 검색 결과를 출력해주는 검색API 입니다. <br/>(**주의 : 특정 위치 기반 검색은 지원 안합니다.**)",
"operationId": "search.local",
"consumes": [
"plain/text"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "query",
"in": "query",
"description": "검색어(UTF-8인코딩 필요)",
"required": true,
"default": "진주",
"type": "string"
},
{
"name": "display",
"in": "query",
"description": "검색결과 출력건수 (10 ~ 100)",
"required": false,
"default": 10,
"type": "integer"
},
{
"name": "start",
"in": "query",
"description": "검색 시작 위치 (1~ 1000, [**1000 이상은 불가**])",
"required": false,
"default": 1,
"type": "integer"
},
{
"name": "sort",
"in": "query",
"description": "정렬 옵션: random(유사도순), comment(카페/블로그 리뷰 개수 순)",
"required": false,
"default": "random",
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/search/movie": {
"get": {
"tags": [
"Naver Services"
],
"summary": "Search-영화 검색",
"description": "네이버 지역 서비스에 등록된 각 지역별 업체 및 상호 검색 결과를 출력해주는 검색API 입니다. <br/>(**주의 : 특정 위치 기반 검색은 지원 안합니다.**)",
"operationId": "search.movie",
"consumes": [
"plain/text"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "query",
"in": "query",
"description": "검색어(UTF-8인코딩 필요)",
"required": true,
"default": "starwars",
"type": "string"
},
{
"name": "display",
"in": "query",
"description": "검색결과 출력건수 (10 ~ 100)",
"required": false,
"default": 10,
"type": "integer"
},
{
"name": "start",
"in": "query",
"description": "검색 시작 위치 (1~ 1000, [**1000 이상은 불가**])",
"required": false,
"default": 1,
"type": "integer"
},
{
"name": "genre",
"in": "query",
"description": "영화장르 검색 옵션<br/>1: 드라마 2: 판타지 3: 서부 4: 공포 5: 로맨스 6: 모험 7: 스릴러 8: 느와르 9: 컬트 10: 다큐멘터리 11: 코미디 12: 가족 13: 미스터리 14: 전쟁 15: 애니메이션 16: 범죄 17: 뮤지컬 18: SF 21: 에로 22: 서스펜스 23: 서사 24: 블랙코미디 25: 실험 26: 영화카툰 27: 영화음악 28: 영화패러디포스터",
"required": false,
"default": "",
"type": "string"
},
{
"name": "country",
"in": "query",
"description": "검색 대상 국가 코드 (대문자만 가능)<br/>한국 (KR), 일본 (JP), 미국 (US), 홍콩 (HK), 영국 (GB), 프랑스 (FR), 기타 (ETC)",
"required": false,
"default": "",
"type": "string"
},
{
"name": "yearfrom",
"in": "query",
"description": "영화제작년도 (최대) <br/>yearfrom과 yearto는 함께 사용",
"required": false,
"default": 2017,
"type": "integer"
},
{
"name": "yearto",
"in": "query",
"description": "영화제작년도 (최소) <br/>yearfrom과 yearto는 함께 사용",
"required": false,
"default": 2017,
"type": "integer"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/util/shorturl": {
"get": {
"tags": [
"Naver Services"
],
"summary": "Util-단축 URL",
"description": "입력된 URL을 me2.do 형태로 짧은 URL로 변환해주는 REST API입니다.",
"operationId": "util.shorturl",
"consumes": [
"plain/text"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "url",
"in": "query",
"description": "단축하고자 하는 원본 URL",
"required": true,
"default": "https://developers.naver.com",
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/captcha/nkey": {
"get": {
"tags": [
"Naver Services"
],
"summary": "Captcha-이미지 캡차 키발급/비교",
"description": "캡차 키 발급/입력값 비교하는 REST API입니다.",
"operationId": "captcha.nkey",
"consumes": [
"plain/text"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "code",
"in": "query",
"description": "0: 키발급, 1:키와 입력값 비교",
"required": true,
"default": 0,
"type": "integer"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/captcha/ncaptcha.bin": {
"get": {
"tags": [
"Naver Services"
],
"summary": "Captcha-이미지 캡차 요청",
"description": "캡차 키 발급 후 캡차 이미지를 요청하는 REST API입니다.",
"operationId": "captcha.ncaptcha",
"consumes": [
"plain/text"
],
"produces": [
"image/jpeg"
],
"parameters": [
{
"name": "code",
"in": "query",
"description": "캡차 키 발급 API 호출로 받은 키 값",
"required": true,
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/captcha/skey": {
"get": {
"tags": [
"Naver Services"
],
"summary": "Captcha-음성 캡차 키발급/비교",
"description": "캡차 키 발급/입력값 비교하는 REST API입니다.",
"operationId": "captcha.skey",
"consumes": [
"plain/text"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "code",
"in": "query",
"description": "0: 키발급, 1:키와 입력값 비교",
"required": true,
"default": 0,
"type": "integer"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/captcha/scaptcha": {
"get": {
"tags": [
"Naver Services"
],
"summary": "Captcha-음성 캡차 요청",
"description": "캡차 키 발급 후 캡차 음성을 요청하는 REST API입니다.",
"operationId": "captcha.scaptcha",
"consumes": [
"plain/text"
],
"produces": [
"voice/wav"
],
"parameters": [
{
"name": "code",
"in": "query",
"description": "캡차 키 발급 API 호출로 받은 키 값",
"required": true,
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/papago/n2mt": {
"post": {
"tags": [
"Papago"
],
"summary": "Papago NMT 번역 API",
"description": "텍스트값을 입력받으면 번역 결과를 리턴합니다.",
"operationId": "papago.nmt",
"consumes": [
"application/x-www-form-urlencoded"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "source",
"in": "formData",
"description": "번역 소스 텍스트의 언어 설정: ko : 한국어 en : 영어 zh-CN : 중국어 간체 kr<->en, ko <-> zh-CN 만 가능",
"required": true,
"default": "ko",
"type": "string"
},
{
"name": "target",
"in": "formData",
"description": "번역 대상 언어, 가능한 값은 source 파라미터와 동일",
"required": true,
"default": "ko",
"type": "string"
},
{
"name": "text",
"in": "formData",
"description": "번역할 문장이며 UTF-8만 지원",
"required": true,
"default": "나는 한국인입니다.",
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/language/translate": {
"post": {
"tags": [
"Papago"
],
"summary": "Papago SMT 번역 API",
"description": "텍스트값을 입력받으면 번역 결과를 리턴합니다.",
"operationId": "papago.smt",
"consumes": [
"application/x-www-form-urlencoded"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "source",
"in": "formData",
"description": "번역 소스 텍스트의 언어 설정: (ko:한국어, en:영어, ja:일본어, zh-CN:중국어(간체), zh-TW:중국어(번체)",
"required": true,
"default": "ko",
"type": "string"
},
{
"name": "target",
"in": "formData",
"description": "번역 대상 언어, 가능한 값은 source 파라미터와 동일",
"required": true,
"default": "ko",
"type": "string"
},
{
"name": "text",
"in": "formData",
"description": "번역할 문장이며 UTF-8만 지원",
"required": true,
"default": "나는 한국인입니다.",
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/krdict/romanization": {
"get": {
"tags": [
"Papago"
],
"summary": "한글인명-로마자 변환",
"description": "'한글로 된 이름을 로마자 표기로 변환해주는 API입니다. 현행 로마자 표기법을 따라 변환한 이름과 통계적으로 많이 사용되고 있는 로마자 이름도 함께 제안 받을 수 있습니다.'",
"operationId": "papago.romanization",
"consumes": [
"plain/text"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "query",
"in": "query",
"description": "로마자로 바꾸려는 한글 이름 (UTF-8)",
"required": true,
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/map/geocode": {
"get": {
"tags": [
"Maps"
],
"summary": "Maps 주소->좌표 변환",
"description": "지번 또는 도로명 주소와 같이 실제 존재하는 주소에 대한 좌표를 검색합니다. (건물명 또는 아파트명 검색 불가) 지번주소가 같더라도, 도로명 주소가 다른 경우가 존재할 수 있습니다.",
"operationId": "maps.geocode",
"consumes": [
"plain/text"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "query",
"in": "query",
"description": "검색할 주소값 (UTF-8인코딩 필요)",
"required": true,
"default": "불정로 6",
"type": "string"
},
{
"name": "encoding",
"in": "query",
"description": "출력 결과 인코딩 값 (utf-8, euc-kr)",
"required": false,
"default": "utf-8",
"type": "string"
},
{
"name": "coordType",
"in": "query",
"description": "출력 좌표 체계 값(latlng(위경도), tm128(카텍) )",
"required": false,
"default": 1,
"type": "string"
},
{
"name": "callback",
"in": "query",
"description": "output이 json일 경우, jsonp 방식으로 호출하기 위한 callback 함수명. callback 파라미터를 지정할 경우에만 jsonp 호출이 가능",
"required": false,
"default": "",
"type": "string"
}
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"clientId": []
},
{
"clientSecret": []
}
]
}
},
"/v1/map/reversegeocode": {
"get": {
"tags": [
"Maps"
],
"summary": "Maps 좌표->주소 변환",
"description": "좌표에 대한 지번 또는 도로명 주소를 검색합니다.",
"operationId": "maps.reversegeocode",
"consumes": [
"plain/text"
],
"produces": [
"application/xml",
"application/json"
],
"parameters": [
{
"name": "query",
"in": "query",
"description": "검색할 좌표 값 (x,y 형식)",
"required": true,
"default": "127.1141382,37.3599968",
"type": "string"
},
{
"name": "encoding",
"in": "query",
"description": "출력 결과 인코딩 값 (utf-8, euc-kr)",
"required": false,
"default": "utf-8",
"type": "string"
},
{
"name": "coordType",
"in": "query",
"description": "출력 좌표 체계 값(latlng(위경도), tm128(카텍) )",
"required": false,
"default": 1,
"type": "string"
},
{
"name": "callback",
"in": "query",
"description": "output이 json일 경우, jsonp 방식으로 호출하기 위한 callback 함수명. callback 파라미터를 지정할 경우에만 jsonp 호출이 가능",
"required": false,
"default": "",
"type": "string"
}
],
"responses": {
"405": {