{"id":37184837,"url":"https://github.com/hotafrika/ebay-finding-api","last_synced_at":"2026-01-14T21:22:31.538Z","repository":{"id":44776484,"uuid":"435495518","full_name":"hotafrika/ebay-finding-api","owner":"hotafrika","description":"Golang client for eBay Finding API","archived":false,"fork":false,"pushed_at":"2022-01-25T14:57:11.000Z","size":70,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-21T03:14:53.790Z","etag":null,"topics":["ebay","ebay-api","ebay-search","ebay-searches","go","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hotafrika.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}},"created_at":"2021-12-06T12:52:16.000Z","updated_at":"2023-04-18T20:50:45.000Z","dependencies_parsed_at":"2022-07-20T17:18:32.892Z","dependency_job_id":null,"html_url":"https://github.com/hotafrika/ebay-finding-api","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/hotafrika/ebay-finding-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hotafrika%2Febay-finding-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hotafrika%2Febay-finding-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hotafrika%2Febay-finding-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hotafrika%2Febay-finding-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hotafrika","download_url":"https://codeload.github.com/hotafrika/ebay-finding-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hotafrika%2Febay-finding-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28434859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ebay","ebay-api","ebay-search","ebay-searches","go","golang"],"created_at":"2026-01-14T21:22:30.950Z","updated_at":"2026-01-14T21:22:31.527Z","avatar_url":"https://github.com/hotafrika.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"![example workflow](https://github.com/hotafrika/ebay-finding-api/actions/workflows/autotests.yml/badge.svg)\n\nGolang library implementation of eBay [Finding API](https://developer.ebay.com/Devzone/finding/Concepts/FindingAPIGuide.html)\n\nYou can check all the Finding API search options and limitations [here](https://developer.ebay.com/Devzone/finding/CallRef/index.html)\n\n\n\n### Example\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/hotafrika/ebay-finding-api\"\n)\n\nfunc main() {\n\t// Create Finding API service\n\ts := finding.NewService(\"your-sec-app-name\").WithPageLimit(50)\n\t// Create findItemsAdvanced call request\n\tr := s.NewAdvancedRequest()\n\t// Set few search parameters\n\tr.WithDescriptionSearch(true)\n\tr.WithKeywords(\"harry potter\")\n\tr.WithItemFilterCondition(finding.ConditionGood, finding.ConditionNew)\n\tr.WithItemFilterMaxPriceWithCurrency(100, finding.CurrencyIDUSD)\n\tr.WithSortOrder(finding.SortOrderCurrentPriceHighest)\n\tr.WithPageLimit(1)\n\tr.WithOutputSelectors(finding.OutputSelectorAspectHistogram,\n\t\tfinding.OutputSelectorSellerInfo,\n\t\tfinding.OutputSelectorStoreInfo,\n\t\tfinding.OutputSelectorUnitPriceInfo,\n\t\tfinding.OutputSelectorGalleryInfo,\n\t\tfinding.OutputSelectorPictureURLSuperSize,\n\t\tfinding.OutputSelectorConditionHistogram,\n\t\tfinding.OutputSelectorCategoryHistogram,\n\t\tfinding.OutputSelectorPictureURLLarge)\n\t// Get first page\n\tres, err := r.Execute()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfmt.Printf(\"%+v\", res)\n\t// Get second page\n\tres2, err := r.GetPage(2)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfmt.Printf(\"%+v\", res2)\n}\n\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhotafrika%2Febay-finding-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhotafrika%2Febay-finding-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhotafrika%2Febay-finding-api/lists"}