{"id":46160959,"url":"https://github.com/relatiocc/opencloud","last_synced_at":"2026-03-02T11:02:02.571Z","repository":{"id":319936583,"uuid":"1079396088","full_name":"relatiocc/opencloud","owner":"relatiocc","description":"Typed SDK for Roblox Open Cloud","archived":false,"fork":false,"pushed_at":"2025-11-20T12:41:32.000Z","size":199,"stargazers_count":8,"open_issues_count":2,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-27T05:09:11.759Z","etag":null,"topics":["api-client","opencloud","roblox","sdk","typescript"],"latest_commit_sha":null,"homepage":"https://opencloud.relatio.cc/","language":"TypeScript","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/relatiocc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","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":"2025-10-19T18:10:41.000Z","updated_at":"2025-12-03T15:35:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"7f980b4d-5209-4dd1-a13d-3eeba4f54b8c","html_url":"https://github.com/relatiocc/opencloud","commit_stats":null,"previous_names":["relatiocc/opencloud"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/relatiocc/opencloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relatiocc%2Fopencloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relatiocc%2Fopencloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relatiocc%2Fopencloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relatiocc%2Fopencloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/relatiocc","download_url":"https://codeload.github.com/relatiocc/opencloud/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/relatiocc%2Fopencloud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29999222,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T09:59:02.300Z","status":"ssl_error","status_checked_at":"2026-03-02T09:59:02.001Z","response_time":60,"last_error":"SSL_read: 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":["api-client","opencloud","roblox","sdk","typescript"],"created_at":"2026-03-02T11:02:01.772Z","updated_at":"2026-03-02T11:02:02.544Z","avatar_url":"https://github.com/relatiocc.png","language":"TypeScript","readme":"# @relatiohq/opencloud\n\n[![npm version](https://img.shields.io/npm/v/@relatiohq/opencloud.svg)](https://www.npmjs.com/package/@relatiohq/opencloud)\n[![npm downloads](https://img.shields.io/npm/dm/@relatiohq/opencloud.svg)](https://www.npmjs.com/package/@relatiohq/opencloud)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue.svg)](https://www.typescriptlang.org/)\n[![codecov](https://codecov.io/gh/relatiocc/opencloud/branch/main/graph/badge.svg)](https://codecov.io/gh/relatiocc/opencloud)\n\nA lightweight, type-safe TypeScript SDK for interacting with the Roblox Open Cloud API. Zero dependencies, built-in retry logic, and full TypeScript support.\n\n## Installation\n\n```bash\nnpm install @relatiohq/opencloud\n# or\npnpm add @relatiohq/opencloud\n# or\nyarn add @relatiohq/opencloud\n```\n\n## Quick Start\n\n```typescript\nimport { OpenCloud } from \"@relatiohq/opencloud\";\n\n// With API key authentication\nconst client = new OpenCloud({\n  apiKey: \"your-api-key\",\n});\n\nconst user = await client.users.get(\"123456789\");\n```\n\n### Per-Request Authentication (OAuth2)\n\nPerfect for multi-tenant applications:\n\n```typescript\n// Create client without default auth\nconst client = new OpenCloud();\n\n// Use different credentials per request\nconst userClient = client.withAuth({\n  kind: \"oauth2\",\n  accessToken: \"user-access-token\",\n});\n\nconst groups = await userClient.groups.listGroupMemberships(\"123456\");\n```\n\n## Documentation\n\nFull API documentation is available at [https://opencloud.relatio.cc](https://opencloud.relatio.cc)\n\n## Features\n\n- Type-safe API client\n- Built with modern TypeScript\n- Tree-shakeable exports\n- Lightweight with zero dependencies\n- Automatic retry with exponential backoff\n- Flexible authentication\n\n## Why Use This SDK?\n\n### vs. Manual API Calls\n\n**Without SDK:**\n\n```typescript\n// Manual fetch with error handling, retries, rate limiting...\nconst response = await fetch(\n  `https://apis.roblox.com/cloud/v2/users/${userId}`,\n  {\n    headers: { \"x-api-key\": apiKey },\n  },\n);\nif (!response.ok) {\n  // Handle errors manually\n  throw new Error(`API error: ${response.status}`);\n}\nconst data = await response.json();\n// No type safety, no automatic retries\n```\n\n**With SDK:**\n\n```typescript\n// Type-safe, automatic retries, built-in error handling\nconst user = await client.users.get(userId);\n// Full TypeScript autocomplete and type checking\n```\n\n## Security\n\nSecurity is a top priority. Please review our [Security Policy](SECURITY.md) for:\n\n- Supported versions\n- How to report vulnerabilities\n- Security best practices for API key management\n- Safe usage guidelines\n\n**Never commit API keys to version control!** Always use environment variables or secure secret management.\n\n## Contributing\n\nContributions are welcome! Please read our [contributing guide](CONTRIBUTING.md) to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes.\n\n## Acknowledgments\n\nThis project is built with:\n\n- [TypeScript](https://www.typescriptlang.org/) - Type-safe JavaScript\n- [tsup](https://tsup.egoist.dev/) - Fast TypeScript bundler\n- [Vitest](https://vitest.dev/) - Lightning fast unit testing\n- [TypeDoc](https://typedoc.org/) - Documentation generation\n\nSpecial thanks to:\n\n- The Roblox team for providing the Open Cloud API\n- All [contributors](https://github.com/relatiocc/opencloud/graphs/contributors) who help improve this SDK\n- The TypeScript community for excellent tooling\n\n## License\n\nMIT © [Relatio](https://github.com/relatiocc)\n\n---\n\n**Note**: This is an unofficial SDK and is not affiliated with, endorsed by, or sponsored by Roblox Corporation.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frelatiocc%2Fopencloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frelatiocc%2Fopencloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frelatiocc%2Fopencloud/lists"}