{"id":34176118,"url":"https://github.com/astrocode-id/go-flaresolverr","last_synced_at":"2026-03-12T03:33:18.541Z","repository":{"id":65471136,"uuid":"592666876","full_name":"astrocode-id/go-flaresolverr","owner":"astrocode-id","description":"FlareSolverr Golang Client","archived":false,"fork":false,"pushed_at":"2023-01-26T03:57:40.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-18T10:13:14.293Z","etag":null,"topics":["api-client","flaresolverr","golang"],"latest_commit_sha":null,"homepage":"https://github.com/fahimbagar/go-flaresolverr","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/astrocode-id.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":"CODEOWNERS","security":null,"support":null}},"created_at":"2023-01-24T09:02:27.000Z","updated_at":"2023-06-18T04:45:03.000Z","dependencies_parsed_at":"2023-02-14T14:01:10.366Z","dependency_job_id":null,"html_url":"https://github.com/astrocode-id/go-flaresolverr","commit_stats":null,"previous_names":["fahimbagar/go-flaresolverr"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/astrocode-id/go-flaresolverr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrocode-id%2Fgo-flaresolverr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrocode-id%2Fgo-flaresolverr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrocode-id%2Fgo-flaresolverr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrocode-id%2Fgo-flaresolverr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/astrocode-id","download_url":"https://codeload.github.com/astrocode-id/go-flaresolverr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrocode-id%2Fgo-flaresolverr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30414337,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T00:40:14.898Z","status":"online","status_checked_at":"2026-03-12T02:00:07.260Z","response_time":114,"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":["api-client","flaresolverr","golang"],"created_at":"2025-12-15T12:25:46.098Z","updated_at":"2026-03-12T03:33:18.537Z","avatar_url":"https://github.com/astrocode-id.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FlareSolverr v3 Go Client\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Code Climate](https://codeclimate.com/github/astrocode-id/go-flaresolverr.png)](https://codeclimate.com/github/astrocode-id/go-flaresolverr)\n[![Test Coverage](https://api.codeclimate.com/v1/badges/c8eaaff0f761d4d1f09f/test_coverage)](https://codeclimate.com/github/astrocode-id/go-flaresolverr/test_coverage)\n[![GitHub issues](https://img.shields.io/github/issues/astrocode-id/go-flaresolverr)](https://github.com/astrocode-id/go-flaresolverr/issues)\n[![CircleCI](https://circleci.com/gh/astrocode-id/go-flaresolverr.svg?style=shield)](https://circleci.com/gh/astrocode-id/go-flaresolverr)\n[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fastrocode-id%2Fgo-flaresolverr.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fastrocode-id%2Fgo-flaresolverr?ref=badge_shield)\n\n[go-flaresolverr](https://github.com/astrocode-id/go-flaresolverr) is Golang client for [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr) v3.\n\n## Installation\n1. Install [FlareSolverr](https://github.com/FlareSolverr/FlareSolverr#installation)\n2. Get [go-flaresolverr](https://github.com/astrocode-id/go-flaresolverr)\n```shell\ngo get github.com/astrocode-id/go-flaresolverr\n```\n\n## Examples\n\n### Get Page\nRetrieves webpage using [`request.get`](https://github.com/FlareSolverr/FlareSolverr#-requestget) command.\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\n\t\"github.com/PuerkitoBio/goquery\"\n\n\t\"github.com/astrocode-id/go-flaresolverr\"\n)\n\nfunc main() {\n\tc, err := flaresolverr.NewClient(flaresolverr.Config{\n\t\tBaseURL: baseURL,\n\t})\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tb, err := c.Get(flaresolverr.GetParams{\n\t\tURL: \"https://ifconfig.me\",\n\t})\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tdoc, err := goquery.NewDocumentFromReader(bytes.NewReader(b))\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tipAddress := doc.Find(\"strong\").First().Text()\n\tfmt.Println(ipAddress)\n}\n```\n\n### Post Page\nRetrieves webpage using [`request.post`](https://github.com/FlareSolverr/FlareSolverr#-requestpost) command.\n\n_TODO_\n\n## Note\n\n- :warning: Currently, [FlareSolverr v3](https://github.com/FlareSolverr/FlareSolverr/releases)\ndoesn't support `session` and `proxy`.\nFor more detail, see [ChangeLog](https://github.com/FlareSolverr/FlareSolverr/blob/master/CHANGELOG.md#v300-20230104).\n\n\n## License\n[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fastrocode-id%2Fgo-flaresolverr.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fastrocode-id%2Fgo-flaresolverr?ref=badge_large)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastrocode-id%2Fgo-flaresolverr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fastrocode-id%2Fgo-flaresolverr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastrocode-id%2Fgo-flaresolverr/lists"}