{"id":15091317,"url":"https://github.com/pierre-emmanuelj/open-alldebrid","last_synced_at":"2025-10-14T18:32:00.500Z","repository":{"id":44916815,"uuid":"447968956","full_name":"pierre-emmanuelJ/open-alldebrid","owner":"pierre-emmanuelJ","description":"Alldebrid OpenAPI based Golang client wrapper","archived":false,"fork":false,"pushed_at":"2022-01-19T16:27:47.000Z","size":3289,"stargazers_count":10,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-31T09:47:53.535Z","etag":null,"topics":["alldebrid","alldebrid-api","alldebrid-wrapper","api","api-client","client","golang","golang-bindings","golang-wrapper","openapi","openapi-spec","openapi-specification","openapi3"],"latest_commit_sha":null,"homepage":"https://pierre-emmanuelj.github.io/open-alldebrid/","language":"HTML","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/pierre-emmanuelJ.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":"2022-01-14T13:00:45.000Z","updated_at":"2025-01-30T16:04:32.000Z","dependencies_parsed_at":"2022-09-05T18:01:02.048Z","dependency_job_id":null,"html_url":"https://github.com/pierre-emmanuelJ/open-alldebrid","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pierre-emmanuelJ/open-alldebrid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pierre-emmanuelJ%2Fopen-alldebrid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pierre-emmanuelJ%2Fopen-alldebrid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pierre-emmanuelJ%2Fopen-alldebrid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pierre-emmanuelJ%2Fopen-alldebrid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pierre-emmanuelJ","download_url":"https://codeload.github.com/pierre-emmanuelJ/open-alldebrid/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pierre-emmanuelJ%2Fopen-alldebrid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279020354,"owners_count":26086866,"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-10-14T02:00:06.444Z","response_time":60,"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":["alldebrid","alldebrid-api","alldebrid-wrapper","api","api-client","client","golang","golang-bindings","golang-wrapper","openapi","openapi-spec","openapi-specification","openapi3"],"created_at":"2024-09-25T10:40:22.020Z","updated_at":"2025-10-14T18:32:00.472Z","avatar_url":"https://github.com/pierre-emmanuelJ.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Open Alldebrid\n\nAlldebrid OpenAPI Golang wrapper\n\nThe Golang wrapper is generated from an [OpenAPI3 spec](./alldebrid.yaml) based on the official Alldebrid.com [Documentation](https://docs.alldebrid.com/#general-informations)\n\nOpen Alldebrid Swagger-ui [Visit here](https://pierre-emmanuelj.github.io/open-alldebrid/)\n\nThis [OpenAPI spec](./alldebrid.yaml) can be used to generate client library in other languages!\n\n## Overview\n\nThis API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project.\n\n- API version: 4.0.0\n- Package version: 1.0.0\n\n## Installation\n\nInstall the following dependencies:\n\n```shell\ngo get \"github.com/pierre-emmanuelJ/open-alldebrid\"\n```\n\nAdd the following import:\n\n```golang\nimport \"github.com/pierre-emmanuelJ/open-alldebrid/client\"\n```\n\n## Examples\n\n```Golang\npackage main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/pierre-emmanuelJ/open-alldebrid/client\"\n)\n\nfunc main() {\n\tagent := \"agent_example\" // Your software user-agent. (default to \"open-alldebrid\")\n\n\tconfiguration := client.NewConfiguration()\n\tconfiguration.AddDefaultHeader(\"Authorization\", \"Bearer ApiKeyFromAlldebrid\")\n\tapi_client := client.NewAPIClient(configuration)\n\n\tresp, r, err := api_client.DefaultApi.UserGet(context.Background()).Agent(agent).Execute()\n\tif err != nil {\n\t\tfmt.Fprintf(os.Stderr, \"Error when calling `DefaultApi.UserGet``: %v\\n\", err)\n\t\tfmt.Fprintf(os.Stderr, \"Full HTTP response: %v\\n\", r)\n\t}\n\n\tfmt.Printf(\"%#v\\n\", resp)\n}\n```\n\nPossible to add Bearer Token from context\n```Golang\npackage main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/pierre-emmanuelJ/open-alldebrid/client\"\n)\n\nfunc main() {\n\tagent := \"agent_example\" // Your software user-agent. (default to \"open-alldebrid\")\n\tauth := context.WithValue(\n\t\tcontext.Background(),\n\t\topenapiclient.ContextAccessToken, \"ApiKeyFromAlldebrid\",\n\t)\n\n\tconfiguration := client.NewConfiguration()\n\tapi_client := client.NewAPIClient(configuration)\n\n\tresp, r, err := api_client.DefaultApi.UserGet(auth).Agent(agent).Execute()\n\tif err != nil {\n\t\tfmt.Fprintf(os.Stderr, \"Error when calling `DefaultApi.UserGet``: %v\\n\", err)\n\t\tfmt.Fprintf(os.Stderr, \"Full HTTP response: %v\\n\", r)\n\t}\n\n\tfmt.Printf(\"%#v\\n\", resp)\n}\n```\n\n## Documentation for API Endpoints\n\nFind all the API Documentation [here](./docs/DefaultApi.md)\n\nSwagger UI [here](https://pierre-emmanuelj.github.io/open-alldebrid/)\n\nYou can execute HTTP request from the UI with your [Alldebrid ApiKey](https://alldebrid.com/apikeys/)\n\n## Documentation For Authorization\n\n### bearerAuth\n\n- **Type**: HTTP Bearer token authentication\n\nExample\n\n```golang\nauth := context.WithValue(context.Background(), sw.ContextAccessToken, \"ApiKeyFromAlldebrid\")\n\nconfiguration := client.NewConfiguration()\napi_client := client.NewAPIClient(configuration)\n\nresp, r, err := api_client.DefaultApi.UserGet(auth).Agent(agent).Execute()\n```\n\n## Powered by\n\n* [openapi-generator](https://github.com/OpenAPITools/openapi-generator)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpierre-emmanuelj%2Fopen-alldebrid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpierre-emmanuelj%2Fopen-alldebrid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpierre-emmanuelj%2Fopen-alldebrid/lists"}