{"id":15091173,"url":"https://github.com/miensoap/kishelper","last_synced_at":"2026-02-09T02:04:38.736Z","repository":{"id":247792269,"uuid":"826823027","full_name":"Miensoap/KISHelper","owner":"Miensoap","description":"Features for utilizing the KIS Open API","archived":false,"fork":false,"pushed_at":"2024-09-17T09:22:02.000Z","size":132,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-05T02:38:43.216Z","etag":null,"topics":["java","kis","library","openapi","stock","stock-prices"],"latest_commit_sha":null,"homepage":"https://central.sonatype.com/artifact/io.github.miensoap/KISHelper","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Miensoap.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-10T12:54:50.000Z","updated_at":"2024-12-14T23:06:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"416c056c-346a-4025-826a-bd42c6f2c921","html_url":"https://github.com/Miensoap/KISHelper","commit_stats":{"total_commits":54,"total_committers":1,"mean_commits":54.0,"dds":0.0,"last_synced_commit":"92a052302e15f882f1a8e97c71f46b6b4008458b"},"previous_names":["miensoap/kishepler"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/Miensoap/KISHelper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miensoap%2FKISHelper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miensoap%2FKISHelper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miensoap%2FKISHelper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miensoap%2FKISHelper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Miensoap","download_url":"https://codeload.github.com/Miensoap/KISHelper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miensoap%2FKISHelper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29254305,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T01:52:29.835Z","status":"online","status_checked_at":"2026-02-09T02:00:09.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","kis","library","openapi","stock","stock-prices"],"created_at":"2024-09-25T10:36:11.647Z","updated_at":"2026-02-09T02:04:38.223Z","avatar_url":"https://github.com/Miensoap.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# KISHelper\n  \n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nKISHelper is a Java library for interacting with the Korea Investment Open API.  \nThis library simplifies the process of accessing and using the API,   \nproviding a more efficient way to integrate financial data into your applications.\n\n**\"This project is under ongoing development. For more details, please visit [this branch](https://github.com/Miensoap/KISHelper/tree/dev) or [this blog](https://miensoap.tistory.com/category/KISHelper).\"**\n\n## Table of Contents\n- [Features](#features)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n## Features\n- Easy integration with the Korea Investment Open API\n- Simplified data retrieval\n- Lightweight and efficient\n\n## Installation\n\nAdd the following to your `build.gradle` file to include KISHelper in your project:\n\n```groovy\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    implementation 'io.github.miensoap:KISHelper:0.1.0'\n}\n```\n\nAdd your [KIS Open API key](https://apiportal.koreainvestment.com/intro) to `resources/kish.yml` file:\n\n```yaml\nappkey: 'your_appkey'\nappsecret: 'your_secret_key'\naccessToken: 'your_access_token' (optional)\n```\n[*How to get your accessToken*](https://apiportal.koreainvestment.com/apiservice/oauth2#L_fa778c98-f68d-451e-8fff-b1c6bfe5cd30) \n\n## Usage\n\n### Example\n\n```java\n// Example usage of KISHelper library\nimport io.github.miensoap.kishelper.core.KISClient;\n\nimport java.io.IOException;\n\npublic class Main {\n    public static void main(String[] args) {\n        KISClient client = KISClient.getInstance();\n        System.out.println(client.getOverseasDailyPrice(\"AMS\", \"SOXL\", false).size());\n\n        // version 0.2.3\n        Stock soxl = new Stock(\"SOXL\", AMEX);\n        System.out.println(soxl.getPriceOfDate(LocalDate.of(2024, 8, 2), true));\n\n        // version 0.2.4\n        System.out.println(soxl.getDetails().englishName());\n    }\n}\n```\n\nFor more detailed usage, please refer to the [documentation](https://github.com/Miensoap/KISHelper.git).\n\n## Contributing\n\nWe welcome contributions to the KISHelper project. Please read our [Contributing Guidelines](CONTRIBUTING.md) for more information on how to get started.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n\n## Contact\n\nDeveloper: Miensoap  \nEmail: miensop51@gmail.com  \nGitHub: [Miensoap](https://github.com/Miensoap)\n\n## Acknowledgements\n\nSpecial thanks to all the contributors who helped in making this project better.\n\n---\n\nFeel free to customize this README file further as per your needs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiensoap%2Fkishelper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiensoap%2Fkishelper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiensoap%2Fkishelper/lists"}