{"id":24178795,"url":"https://github.com/reloadly/reloadly-sdk-golang","last_synced_at":"2026-06-08T06:31:49.645Z","repository":{"id":49964606,"uuid":"351251679","full_name":"Reloadly/reloadly-sdk-golang","owner":"Reloadly","description":"The official Reloadly SDK for Golang","archived":false,"fork":false,"pushed_at":"2021-06-07T17:25:11.000Z","size":283,"stargazers_count":2,"open_issues_count":1,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-11T09:35:52.973Z","etag":null,"topics":["airtime","go","golang","reloadly","reloadly-sdk","sdk","telecommunications","topup"],"latest_commit_sha":null,"homepage":"https://developers.reloadly.com","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/Reloadly.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE-OF-CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-03-24T23:29:51.000Z","updated_at":"2021-08-22T14:54:38.000Z","dependencies_parsed_at":"2022-09-12T15:31:08.310Z","dependency_job_id":null,"html_url":"https://github.com/Reloadly/reloadly-sdk-golang","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reloadly%2Freloadly-sdk-golang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reloadly%2Freloadly-sdk-golang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reloadly%2Freloadly-sdk-golang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Reloadly%2Freloadly-sdk-golang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Reloadly","download_url":"https://codeload.github.com/Reloadly/reloadly-sdk-golang/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241549134,"owners_count":19980476,"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","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":["airtime","go","golang","reloadly","reloadly-sdk","sdk","telecommunications","topup"],"created_at":"2025-01-13T05:13:42.645Z","updated_at":"2025-11-28T06:06:06.678Z","avatar_url":"https://github.com/Reloadly.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"icon.png\" width=\"89\" height=\"130\" align=\"right\" alt=\"reloadly-golang-icon\"/\u003e\n\n# Reloadly SDK for Golang\n\n[![CircleCI][circle-ci-badge]][circle-ci-url] [![MIT][mit-badge]][mit-url] [![codecov][codecov-badge]][codecov-url] [![Go Reference][golang-reference-badge]][golang-reference-url]\nThe **Reloadly SDK for Golang** enables Go developers to easily work with [Reloadly Services][reloadly-main-site] and build scalable solutions. You can get started in minutes if you have Go 1.15+ installed on your machine.\n\n\n* [SDK Homepage][sdk-website] (Coming soon)\n* [Sample Code][sample-code]\n* [API Docs][docs-api]\n* [Issues][sdk-issues]\n* [Giving Feedback](#giving-feedback)\n* [Getting Help](#getting-help)\n\n## Getting Started\n\n#### Sign up for Reloadly ####   \n\nBefore you begin, you need a Reloadly account. Please see the [Sign Up for Reloadly][reloadly-signup-help] section of\nthe knowledge-base for information about how to create a Reloadly account and retrieve\nyour [Reloadly APIs credentials][api-credentials-help].\n\n#### Minimum requirements ####   \n\n**Go 1.15+** installed\n\n#### Installation\n\n`$ go get -u github.com/reloadly/reloadly-sdk-golang`\n\n## Usage\n\n#### Authentication\n\nThe Authentication module is implemented based on\nthe [Authentication API Docs](https://developers.reloadly.com/#authentication-api). This module has a `GetAccessToken`\nfunction which is used to derive an accessToken. The access Token which should be used as a bearer token when making\nauthenticated requests to the Reloadly API. **This module should be used only when you just need the access token, but\ndo not intend to use this library for other interactions with Reloadly API**.\n\n```Go  \nauthClient,err := authentication.NewAuthClient(clientID, clientSecret, false)  \n  \nif err != nil {  \n   fmt.Println(err)  \n   return  \n}  \n  \naccessResponse, err := authClient.GetAccessToken()  \n  \nif err != nil {  \n   fmt.Println(err)  \n   return  \n}  \n  \naccessToken := accessResponse.AccessToken  \nexpiresIn := accessResponse.ExpiresIn  \nfmt.Println(accessToken,expiresIn)  \n```  \n\n## Getting Help\n\nGitHub [issues][sdk-issues] is the preferred channel to interact with our team. Also check these community resources\nfor getting help:\n\n* Checkout \u0026 search our [knowledge-base][reloadly-knowledge-base]\n* Talk to us live on our chat tool on our [website][reloadly-main-site] (bottom right)\n* Ask a question on [StackOverflow][stack-overflow] and tag it with `reloadly-golang-sdk`\n* Articulate your feature request or upvote existing ones on our [Issues][features] page\n* Take a look at our [youtube series][youtube-series] for plenty of helpful walkthroughs and tips\n* Open a case via with the [Reloadly Support Center][support-center]\n* If it turns out that you may have found a bug, please open an [issue][sdk-issues]\n\n## Documentation\n\nPlease see the [Godoc](https://pkg.go.dev/github.com/Ghvstcode/reloadly) for the most up-to-date documentation.\n\n## Giving Feedback\n\nWe need your help in making this SDK great. Please participate in the community and contribute to this effort by    \nsubmitting issues, participating in discussion forums and submitting pull requests through the following channels:\n\n* Submit [issues][sdk-issues] - this is the preferred channel to interact with our team\n* Come join the Reloadly Golang community chat on [Gitter][gitter]\n* Articulate your feature request or upvote existing ones on our [Issues][features] page\n* Send feedback directly to the team at oss@reloadly.com\n\n## License\n\nThis project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.\n\n[reloadly-main-site]: https://www.reloadly.com/\n\n[reloadly-signup-help]: https://faq.reloadly.com/en/articles/2307724-how-do-i-register-for-my-free-account\n\n[api-credentials-help]: https://faq.reloadly.com/en/articles/3519543-locating-your-api-credentials\n\n[sdk-issues]: https://github.com/ghvstcode/reloadly/issues\n\n[sdk-license]: http://www.reloadly.com/software/apache2.0/\n\n[gitter]: https://gitter.im/reloadly/reloadly-sdk-golang\n\n[sample-code]: https://github.com/reloadly/reloadly-sdk-golang/blob/main/SAMPLE_CODE.MD\n\n[docs-api]: https://developers.reloadly.com\n\n[features]: https://github.com/reloadly/reloadly-sdk-golang/issues?q=is%3Aopen+is%3Aissue+label%3A%22feature-request%22\n\n[api-docs]: https://developers.reloadly.com\n\n[godoc]: https://pkg.go.dev/github.com/reloadly/reloadly-sdk-golang\n\n[lombok]: https://projectlombok.org\n\n[lombok-plugins]: https://projectlombok.org/setup/overview\n\n[mit-badge]: http://img.shields.io/:license-mit-blue.svg?style=flat\n\n[mit-url]: https://github.com/reloadly/reloadly-sdk-golang/raw/main/LICENSE\n\n[circle-ci-badge]: https://circleci.com/gh/Reloadly/reloadly-sdk-golang.svg?style=svg\u0026circle-token=8f018250b6732bd0be3b183cb09c94942f800b0a\n\n[circle-ci-url]: https://app.circleci.com/pipelines/github/Reloadly/reloadly-sdk-golang\n\n[codecov-badge]: https://codecov.io/gh/Reloadly/reloadly-sdk-golang/branch/main/graph/badge.svg?token=SUV66Q3J2Y\n\n[codecov-url]: https://codecov.io/gh/Reloadly/reloadly-sdk-golang\n\n[youtube-series]: https://www.youtube.com/watch?v=TbXC4Ic8x30\u0026t=141s\u0026ab_channel=Reloadly\n\n[reloadly-knowledge-base]: https://faq.reloadly.com\n\n[stack-overflow]: http://stackoverflow.com/questions/tagged/reloadly-reloadly-sdk\n\n[support-center]: https://faq.reloadly.com/en/articles/3423196-contacting-support\n\n[sdk-website]: https://www.reloadly.com\n\n[golang-reference-badge]: https://pkg.go.dev/badge/github.com/reloadly/reloadly-sdk-golang.svg\n\n[golang-reference-url]: https://pkg.go.dev/github.com/reloadly/reloadly-sdk-golang","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freloadly%2Freloadly-sdk-golang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freloadly%2Freloadly-sdk-golang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freloadly%2Freloadly-sdk-golang/lists"}