{"id":45338998,"url":"https://github.com/sue445/gitpanda_fetcher","last_synced_at":"2026-02-21T10:03:37.058Z","repository":{"id":338054737,"uuid":"1156123208","full_name":"sue445/gitpanda_fetcher","owner":"sue445","description":"Module for parsing GitLab URLs and retrieving information via GitLab API","archived":false,"fork":false,"pushed_at":"2026-02-12T15:53:20.000Z","size":208,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-13T00:05:39.555Z","etag":null,"topics":["gitlab"],"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/sue445.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-12T09:36:58.000Z","updated_at":"2026-02-12T15:56:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sue445/gitpanda_fetcher","commit_stats":null,"previous_names":["sue445/gitpanda_fetcher"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sue445/gitpanda_fetcher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sue445%2Fgitpanda_fetcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sue445%2Fgitpanda_fetcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sue445%2Fgitpanda_fetcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sue445%2Fgitpanda_fetcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sue445","download_url":"https://codeload.github.com/sue445/gitpanda_fetcher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sue445%2Fgitpanda_fetcher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29679049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T09:33:50.764Z","status":"ssl_error","status_checked_at":"2026-02-21T09:33:19.949Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["gitlab"],"created_at":"2026-02-21T10:03:32.189Z","updated_at":"2026-02-21T10:03:37.052Z","avatar_url":"https://github.com/sue445.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gitpanda_fetcher :panda_face:\nModule for parsing [GitLab™](https://about.gitlab.com/) URLs and retrieving information via GitLab API\n\nThis is a module spun-off from https://github.com/sue445/gitpanda.\n\n_GITLAB is a trademark of GitLab Inc. in the United States and other countries and regions_\n\n[![Latest Version](https://img.shields.io/github/v/tag/sue445/gitpanda_fetcher)](https://github.com/sue445/gitpanda_fetcher/tags)\n[![test](https://github.com/sue445/gitpanda_fetcher/actions/workflows/test.yml/badge.svg)](https://github.com/sue445/gitpanda_fetcher/actions/workflows/test.yml)\n[![GoDoc](https://godoc.org/github.com/sue445/gitpanda_fetcher?status.svg)](https://godoc.org/github.com/sue445/gitpanda_fetcher)\n[![Go Report Card](https://goreportcard.com/badge/github.com/sue445/gitpanda_fetcher)](https://goreportcard.com/report/github.com/sue445/gitpanda_fetcher)\n[![Coverage Status](https://coveralls.io/repos/github/sue445/gitpanda_fetcher/badge.svg)](https://coveralls.io/github/sue445/gitpanda_fetcher)\n\n## Usage\n```go\npackage main\n\nimport (\n\t\"github.com/sue445/gitpanda_fetcher\"\n)\n\nfunc main() {\n\tclient, err := fetcher.NewClient(\u0026fetcher.ClientParams{\n\t\tAPIEndpoint:    \"https://gitlab.example.com/api/v4\",\n\t\tBaseURL:        \"https://gitlab.example.com\",\n\t\tPrivateToken:   \"xxxxxxxxxx\",\n\t\tIsDebugLogging: true,\n\t})\n\n\tpage, err := client.FetchURL(\"https://gitlab.example.com/user/repo/-/merge_requests/123\")\n}\n```\n\n## Requirements\n* GitLab API v4\n\n## Supported URL format\n* User URL\n    * e.g. `${GITLAB_BASE_URL}/:username`\n* Group URL\n    * e.g. `${GITLAB_BASE_URL}/:groupname`\n* Project URL\n    * e.g. `${GITLAB_BASE_URL}/:namespace/:reponame`\n* Issue URL\n    * e.g. `${GITLAB_BASE_URL}/:namespace/:reponame/issues/:iid`\n* MergeRequest URL\n    * e.g. `${GITLAB_BASE_URL}/:namespace/:reponame/merge_requests/:iid`\n* Job URL\n    * e.g. `${GITLAB_BASE_URL}/:namespace/:reponame/-/jobs/:id`\n* Pipeline URL\n    * e.g. `${GITLAB_BASE_URL}/:namespace/:reponame/pipelines/:id`\n* Blob URL\n    * e.g. `${GITLAB_BASE_URL}/:namespace/:reponame/blob/:sha1/:filename`\n* Commit URL\n    * e.g. `${GITLAB_BASE_URL}/:namespace/:reponame/commit/:sha1`\n* Project snippet URL\n    * e.g. `${GITLAB_BASE_URL}/:namespace/:reponame/snippets/:id`\n* Snippet URL\n    * e.g. `${GITLAB_BASE_URL}/snippets/:id`\n* Epic URL\n    * e.g. `${GITLAB_BASE_URL}/groups/:groupname/-/epics/:iid`\n* Work item URL\n    * e.g. `${GITLAB_BASE_URL}/:namespace/:reponame/-/work_items/:iid`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsue445%2Fgitpanda_fetcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsue445%2Fgitpanda_fetcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsue445%2Fgitpanda_fetcher/lists"}