{"id":18950841,"url":"https://github.com/whywaita/go-yahoo","last_synced_at":"2025-08-11T09:15:45.820Z","repository":{"id":74409327,"uuid":"80600769","full_name":"whywaita/go-yahoo","owner":"whywaita","description":"go-yahoo is go client for Yahoo Web API in yahoo.co.jp","archived":false,"fork":false,"pushed_at":"2017-02-09T20:01:54.000Z","size":9,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-02T02:49:51.544Z","etag":null,"topics":["go-yahoo","golang-library","yahoo"],"latest_commit_sha":null,"homepage":"","language":"Go","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/whywaita.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":"2017-02-01T08:13:50.000Z","updated_at":"2017-02-02T11:34:55.000Z","dependencies_parsed_at":"2023-03-01T04:30:57.195Z","dependency_job_id":null,"html_url":"https://github.com/whywaita/go-yahoo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/whywaita/go-yahoo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fgo-yahoo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fgo-yahoo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fgo-yahoo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fgo-yahoo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whywaita","download_url":"https://codeload.github.com/whywaita/go-yahoo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whywaita%2Fgo-yahoo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269857730,"owners_count":24486395,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"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":["go-yahoo","golang-library","yahoo"],"created_at":"2024-11-08T13:24:52.166Z","updated_at":"2025-08-11T09:15:45.815Z","avatar_url":"https://github.com/whywaita.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-yahoo\n\ngo-yahoo is go client for [Yahoo Web API](http://developer.yahoo.co.jp/)\n\n## Support Web API\n\n- [WIP] yahoo auction(ヤフオク!)\n\n## installation\n\n```\ngo get github.com/whywaita/go-yahoo\n```\n\ngo-yahoo need Application ID(auth token).\nPlease read [This page](http://developer.yahoo.co.jp/start/).\n\n## Usage\n\nSearch \"jewelry\" in [ヤフオク!](http://auctions.yahoo.co.jp/)\n\n```go\npackage main\n\nimport (\n  \"context\"\n  \"fmt\"\n  \"log\"\n\n  \"github.com/whywaita/go-yahoo/auction\"\n)\n\nconst (\n  token = \"YOUR-TOKEN\"\n)\n\nfunc main() {\n  ctx := context.Background()\n\n  client, err := auction.NewClient(token, nil)\n  if err != nil {\n    log.Println(err)\n    log.Fatal(\"fail new client\")\n  }\n\n  _, err = client.GetCategoryList(ctx)\n  if err != nil {\n    log.Println(err)\n    log.Fatal(\"fail GetCategoryIdList\")\n  }\n\n  list, err := client.GetItemsListBySearch(ctx, \"jewelry\")\n  if err != nil {\n    log.Println(err)\n    log.Fatal(\"fail GetItemsListBySearch\")\n  }\n  fmt.Println(list)\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhywaita%2Fgo-yahoo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhywaita%2Fgo-yahoo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhywaita%2Fgo-yahoo/lists"}