├── .github └── workflows │ └── link_health_check.yml ├── .gitignore ├── CONTRIBUTING.md ├── GLOBAL_PUBLIC_APIS_KR.md ├── LICENSE ├── README.md ├── README_EN.md ├── assets ├── logo-kakao.png ├── logo-naver.png └── public-api-icon.png ├── reports ├── link_health_report_25_08_29.json ├── link_health_report_25_09_01.json ├── link_health_report_25_09_09.json ├── link_health_report_25_09_23.json └── link_health_report_25_11_09.json ├── scripts ├── link_health_check.py └── requirements.txt └── test └── test.md /.github/workflows/link_health_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/.github/workflows/link_health_check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GLOBAL_PUBLIC_APIS_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/GLOBAL_PUBLIC_APIS_KR.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/README_EN.md -------------------------------------------------------------------------------- /assets/logo-kakao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/assets/logo-kakao.png -------------------------------------------------------------------------------- /assets/logo-naver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/assets/logo-naver.png -------------------------------------------------------------------------------- /assets/public-api-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/assets/public-api-icon.png -------------------------------------------------------------------------------- /reports/link_health_report_25_08_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/reports/link_health_report_25_08_29.json -------------------------------------------------------------------------------- /reports/link_health_report_25_09_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/reports/link_health_report_25_09_01.json -------------------------------------------------------------------------------- /reports/link_health_report_25_09_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/reports/link_health_report_25_09_09.json -------------------------------------------------------------------------------- /reports/link_health_report_25_09_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/reports/link_health_report_25_09_23.json -------------------------------------------------------------------------------- /reports/link_health_report_25_11_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/reports/link_health_report_25_11_09.json -------------------------------------------------------------------------------- /scripts/link_health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/scripts/link_health_check.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp>=3.8.0 2 | -------------------------------------------------------------------------------- /test/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yybmion/public-apis-4Kr/HEAD/test/test.md --------------------------------------------------------------------------------