Try our Chrome extension
Easily add the current web-page from your browser directly into your changedetection.io tool, more great features coming soon!Changedetection.io needs your support!
You can help us by supporting changedetection.io on these platforms;
- Rate us at AlternativeTo.net
- Star us on GitHub
- Follow us at Twitter/X
- G2 Software reviews
- Check us out on LinkedIn
- And tell your friends and colleagues :)
The more popular changedetection.io is, the more time we can dedicate to adding amazing features!
Many thanks :)
changedetection.io team
Aún no hace unos segundos
False
Aún no hace unos segundos
Texto activado Texto ignorado Texto bloqueado
hace 3 horas
Skip to content
Navigation Menu
Sign in Appearance settings
* Platform
+ AI CODE CREATION
o GitHub Copilot Write better code with AI
o GitHub Copilot app Direct agents from issue to merge
o MCP Registry Integrate external tools
+ DEVELOPER WORKFLOWS
o Actions Automate any workflow
o Codespaces Instant dev environments
o Issues Plan and track work
o Code Review Manage code changes
o Code Quality Enforce quality at merge
+ APPLICATION SECURITY
o GitHub Advanced Security Find and fix vulnerabilities
o Code security Secure your code as you build
o Secret protection Stop leaks before they start
+ EXPLORE
o Why GitHub
o Documentation
o Blog
o Changelog
o Marketplace
View all features
* Solutions
+ BY COMPANY SIZE
o Enterprises
o Small and medium teams
o Startups
o Nonprofits
+ BY USE CASE
o App Modernization
o DevSecOps
o DevOps
o CI/CD
o View all use cases
+ BY INDUSTRY
o Healthcare
o Financial services
o Manufacturing
o Government
o View all industries
View all solutions
* Resources
+ EXPLORE BY TOPIC
o AI
o Software Development
o DevOps
o Security
o View all topics
+ EXPLORE BY TYPE
o Customer stories
o Events & webinars
o Ebooks & reports
o Business insights
o GitHub Skills
+ SUPPORT & SERVICES
o Documentation
o Customer support
o Community forum
o Trust center
o Partners
View all resources
* Open Source
+ COMMUNITY
o GitHub Sponsors Fund open source developers
+ PROGRAMS
o Security Lab
o Maintainer Community
o Accelerator
o GitHub Stars
o Archive Program
+ REPOSITORIES
o Topics
o Trending
o Collections
* Enterprise
+ ENTERPRISE SOLUTIONS
o Enterprise platform AI-powered developer platform
+ AVAILABLE ADD-ONS
o GitHub Advanced Security Enterprise-grade security features
o Copilot for Business Enterprise-grade AI features
o Premium Support Enterprise-grade 24/7 support
* Pricing
Type / to search
Sign in
Sign up Appearance settings
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
Uh oh!
There was an error while loading. Please reload this page.
Redocly / redoc Public
* Notifications You must be signed in to change notification settings
* Fork 2.4k
* Star 25.9k
* Code
* Issues 404
* Pull requests 47
* Actions
* Projects
* Security and quality 0
* Insights
Additional navigation options
* Code
* Issues
* Pull requests
* Actions
* Projects
* Security and quality
* Insights
main
Branches Tags
Go to file
Code
Open more actions menu
Folders and files
Name Name Last commit message Last commit date
Latest commit
History
2,650 Commits
2,650 Commits
.github .github
.husky .husky
benchmark benchmark
config config
demo demo
docs docs
e2e e2e
scripts scripts
src src
typings typings
.dockerignore .dockerignore
.editorconfig .editorconfig
.eslintrc.js .eslintrc.js
.gitignore .gitignore
.markdownlint.yaml .markdownlint.yaml
.mlc.toml .mlc.toml
.npmignore .npmignore
.prettierignore .prettierignore
.vale.ini .vale.ini
CHANGELOG.md CHANGELOG.md
LICENSE LICENSE
README.md README.md
custom.d.ts custom.d.ts
cypress.config.ts cypress.config.ts
package-lock.json package-lock.json
package.json package.json
tsconfig.json tsconfig.json
tsconfig.lib.json tsconfig.lib.json
tslint.json tslint.json
webpack.config.ts webpack.config.ts
View all files
Repository files navigation
*
* README
* Contributing
* MIT license
More items
Generate beautiful API documentation from OpenAPI
About Redoc
Redoc is an open source tool for generating documentation from OpenAPI (formerly Swagger) definitions.
By default Redoc offers a three-panel, responsive layout:
* The left panel contains a search bar and navigation menu.
* The central panel contains the documentation.
* The right panel contains request and response examples.
Live demo
If you want to see how Redoc renders your OpenAPI definition, you can try it out online at https://redocly.github.io/redoc/.
A version of the Swagger Petstore API is displayed by default. To test it with your own OpenAPI definition, enter the URL for your definition and select TRY IT.
Redoc features
* Responsive three-panel design with menu/scrolling synchronization
* Support for OpenAPI 3.1, OpenAPI 3.0, and Swagger 2.0
* Ability to integrate your API introduction into the side menu
* High-level grouping in side menu with the x-tagGroups specification extension
* Simple integration with create-react-app
* Code samples support (with vendor extension)
Usage
Redoc is provided as a CLI tool (also distributed as a Docker image), HTML tag, and React component.
Generate documentation from the CLI
If you have Node installed, quickly generate documentation using npx:
npx @redocly/cli build-docs openapi.yaml
The tool outputs by default to a file named redoc-static.html that you can open in your browser.
Redocly CLI does more than docs; check it out and add linting, bundling, and more to your API workflow.
Add an HTML element to the page
Create an HTML page, or edit an existing one, and add the following within the body tags:
<redoc spec-url="http://petstore.swagger.io/v2/swagger.json"></redoc>
<script src="https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js"> </script>
Open the HTML file in your browser, and your API documentation is shown on the page.
Add your own spec-url to the <redoc> tag; this attribute can also be a local file. The JavaScript library can also be installed locally using npm and served from your own server, see the HTML deployment documentation for more details.
More usage options
Check out the deployment documentation for more options, and detailed documentation for each.
Redoc vs hosted Redoc
Redoc is Redocly's community-edition product. Looking for something more? We also offer a hosted Redoc with additional features including:
* Try-it console
* Automated code samples
* Fully custom styles
* Mock server
* AsyncAPI
* GraphQL
Documentation and resources
* Realm - we take care of the hosting
* Redoc - detailed documentation for this open source project (also in the docs/ folder)
* Command-line interface to bundle your docs into a web-ready HTML file
* API linting, bundling, and much more with open source Redocly CLI
Showcase
A sample of the organizations using Redocly tools in the wild:
* Rebilly
* Docker Engine
* Zuora
* Discourse
* Commbox
* APIs.guru
* BoxKnight
* Quaderno API
Pull requests to add your own API page to the list are welcome
Configuration
Redoc is highly configurable, see the configuration documentation for details.
OpenAPI specification extensions
Redoc uses the following specification extensions:
* x-logo - is used to specify API logo
* x-traitTag - useful for tags that refer to non-navigation properties like Pagination, Rate-Limits, etc
* x-codeSamples - specify operation code samples
* x-badges - specify operation badges
* x-examples - specify JSON example for requests
* x-nullable - mark schema param as a nullable
* x-displayName - specify human-friendly names for the menu categories
* x-tagGroups - group tags by categories in the side menu
* x-servers - ability to specify different servers for API (backported from OpenAPI 3.0)
* x-additionalPropertiesName - ability to supply a descriptive name for the additional property keys
* x-summary - for Response object, use as the response button text, with description rendered under the button
* x-explicitMappingOnly - in Schemas, display a more descriptive property name in objects with additionalProperties when viewing the property list with an object
Releases
The README for the 1.x version is on the v1.x branch.
All the 2.x releases are deployed to npm and can be used with Redocly-cdn:
* particular release, for example, v2.0.0: https://cdn.redoc.ly/redoc/v2.0.0/bundles/redoc.standalone.js
* latest release: https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js
Additionally, all the 1.x releases are hosted on our GitHub Pages-based CDN (deprecated):
* particular release, for example v1.2.0: https://rebilly.github.io/ReDoc/releases/v1.2.0/redoc.min.js
* v1.x.x release: https://rebilly.github.io/ReDoc/releases/v1.x.x/redoc.min.js
* latest release: https://rebilly.github.io/ReDoc/releases/latest/redoc.min.js - points to latest 1.x.x release since 2.x releases are not hosted on this CDN but on unpkg.
Development
see CONTRIBUTING.md
About
📘 OpenAPI/Swagger-generated API Reference Documentation
redocly.github.io/redoc/
Topics
api-documentationdocumentation-generatordocumentation-toolhacktoberfestopenapiopenapi-specificationopenapi3openapi31reactjsredocswagger
Resources
Readme
MIT license
Contributing
Contributing
Activity
Custom properties
Stars
25.9k stars
Watchers
294 watching
Forks
2.4k forks
Report repository
Releases
Packages
Used by
Contributors
Languages
Footer
© 2026 GitHub, Inc.
Footer navigation
* Terms
* Privacy
* Security
* Status
* Community
* Docs
* Contact
* Manage cookies
* Do not share my personal information
You can’t perform that action at this time.
Por ahora, las diferencias se realizan en texto, no gráficamente, solo está disponible la última captura de pantalla.
La captura de pantalla requiere un buscador de contenido (Sockpuppetbrowser, selenium, etc.) que admita capturas de pantalla.