{"id":38170945,"url":"https://github.com/rhinolabs/docutopia","last_synced_at":"2026-01-16T23:26:03.498Z","repository":{"id":275607678,"uuid":"914580709","full_name":"rhinolabs/docutopia","owner":"rhinolabs","description":"Simple and beautiful API documentation library.","archived":false,"fork":false,"pushed_at":"2026-01-13T21:14:11.000Z","size":6861,"stargazers_count":3,"open_issues_count":4,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-13T23:47:40.477Z","etag":null,"topics":["api","docs","openapi","specs","swagger"],"latest_commit_sha":null,"homepage":"https://docutopia.dev","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/rhinolabs.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,"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-01-09T21:57:27.000Z","updated_at":"2025-12-30T21:36:53.000Z","dependencies_parsed_at":"2025-12-31T08:05:33.362Z","dependency_job_id":null,"html_url":"https://github.com/rhinolabs/docutopia","commit_stats":null,"previous_names":["chrisllontop/docutopia","rhinolabs/docutopia"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/rhinolabs/docutopia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhinolabs%2Fdocutopia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhinolabs%2Fdocutopia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhinolabs%2Fdocutopia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhinolabs%2Fdocutopia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rhinolabs","download_url":"https://codeload.github.com/rhinolabs/docutopia/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhinolabs%2Fdocutopia/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28487586,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T22:54:02.790Z","status":"ssl_error","status_checked_at":"2026-01-16T22:50:10.344Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["api","docs","openapi","specs","swagger"],"created_at":"2026-01-16T23:26:03.343Z","updated_at":"2026-01-16T23:26:03.478Z","avatar_url":"https://github.com/rhinolabs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docutopia\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://img.shields.io/npm/v/@docutopia/react\" alt=\"npm version\"\u003e\n  \u003cimg src=\"https://img.shields.io/npm/l/@docutopia/react\" alt=\"license\"\u003e\n  \u003cimg src=\"https://img.shields.io/github/stars/rhinolabs/docutopia\" alt=\"github stars\"\u003e\n\u003c/p\u003e\n\nA modern, interactive API documentation library built on React. Docutopia brings beautiful, type-safe API documentation to your OpenAPI specifications with a focus on simplicity and developer experience.\n\n## Overview\n\nDocutopia simplifies creating beautiful API documentation by providing:\n\n- **Modern React architecture** with clean, responsive UI\n- **Interactive API testing** built directly into the documentation\n- **Multiple authentication methods** (Bearer Token, API Key, Basic Auth)\n- **Automatic cURL generation** for all API requests\n- **Dark mode support** out of the box\n\n## Packages\n\n- [`@docutopia/react`](./packages/react/README.md) - React library with API documentation rendering\n- [`@docutopia/fastify`](./packages/fastify/README.md) - Fastify plugin for serving Docutopia\n- [`@docutopia/nextjs`](./packages/nextjs/README.md) - Next.js adapter for Docutopia\n\n## Getting Started\n\nInstall the package:\n\n```bash\nnpm install @docutopia/react\n```\n\nUse it in your application:\n\n```jsx\nimport { Docutopia } from '@docutopia/react';\n\nfunction App() {\n  return (\n    \u003cDocutopia\n      specUrl=\"https://petstore3.swagger.io/api/v3/openapi.json\"\n      baseUrl=\"https://petstore3.swagger.io\" // optional\n    /\u003e\n  );\n}\n```\n\n### Props\n\n- **`specUrl`** (required) - URL to your OpenAPI specification\n- **`baseUrl`** (optional) - Base URL for API requests. If not provided, uses the server URL from the OpenAPI spec\n\n## Features\n\n- **🎨 Beautiful UI** - Modern, responsive interface with dark mode support\n- **🔄 Interactive Testing** - Test API endpoints directly in the documentation\n- **🔐 Multiple Auth Methods** - Bearer Token, API Key, and Basic Auth support\n- **📋 cURL Generation** - Export any request as a cURL command\n- **📱 Responsive** - Works seamlessly on desktop and mobile\n\n## Development\n\n```bash\n# Clone the repository\ngit clone https://github.com/rhinolabs/docutopia.git\ncd docutopia\n\n# Install dependencies\npnpm install\n\n# Build all packages\npnpm build\n\n# Run development mode\npnpm dev\n\n# Run linting\npnpm lint\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhinolabs%2Fdocutopia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frhinolabs%2Fdocutopia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhinolabs%2Fdocutopia/lists"}