{"id":20172597,"url":"https://github.com/screenshotone/about","last_synced_at":"2026-05-19T03:10:16.499Z","repository":{"id":234176266,"uuid":"788388448","full_name":"screenshotone/about","owner":"screenshotone","description":"A few words about the best screenshot API","archived":false,"fork":false,"pushed_at":"2024-04-18T10:24:10.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-03T04:41:28.349Z","etag":null,"topics":["api","playwright","puppeteer","puppeteer-screenshot","puppeteer-screenshots","screenshot","screenshot-api","screenshots"],"latest_commit_sha":null,"homepage":"https://screenshotone.com/","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/screenshotone.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-04-18T10:15:21.000Z","updated_at":"2024-04-18T10:18:51.000Z","dependencies_parsed_at":"2024-04-18T12:08:02.619Z","dependency_job_id":"ea9ca674-1a26-4a69-a384-7311825a06b0","html_url":"https://github.com/screenshotone/about","commit_stats":null,"previous_names":["screenshotone/about"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/screenshotone/about","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/screenshotone%2Fabout","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/screenshotone%2Fabout/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/screenshotone%2Fabout/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/screenshotone%2Fabout/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/screenshotone","download_url":"https://codeload.github.com/screenshotone/about/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/screenshotone%2Fabout/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266499246,"owners_count":23938815,"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-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["api","playwright","puppeteer","puppeteer-screenshot","puppeteer-screenshots","screenshot","screenshot-api","screenshots"],"created_at":"2024-11-14T01:31:29.765Z","updated_at":"2026-05-19T03:10:16.433Z","avatar_url":"https://github.com/screenshotone.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# The screenshot API for developers\n\nWith [ScreenshotOne](https://screenshotone.com/) you can render screenshots in one simple API call, instead of managing browser clusters, and handling all the corner cases.\n\nIt supports a wide range of programming languages including TypeScript, Python, Java, and more. This flexibility makes it an excellent tool for developers looking to integrate screenshot functionality into their applications regardless of their development environment. \n\n## Key features \n\nThe [ScreenshotOne API](https://screenshotone.com/) offers powerful features that make it a go-to solution for developers:\n\n1. Ability to take clean screenshots by blocking cookie banners, ads, chat, and other widgets to make the screenshots look clean.\n2. Supports rendering screenshots in a variety of image formats including PNG, JPEG, WebP, GIF, and more.\n3. Provides options to customize the screenshot rendering, such as setting the screen size, enabling dark mode, and extracting metadata like fonts used.\n4. Offers asynchronous screenshot execution and webhooks to upload the rendered screenshots or HTML content to services like Amazon S3.\n5. Provides SDKs and no-code integrations with tools like Zapier to easily incorporate screenshot functionality into applications.\n\n## Code Examples \n\nRun the next command to install the JavaScript and TypeScript Node.js SDK to take screenshots:\n\n```bash\nnpm install screenshotone-api-sdk --save\n```\n\nGenerate a screenshot URL without executing the request. Or download the screenshot. It is up to you:\n\n```javascript\nimport * as fs from \"fs\";\nimport * as screenshotone from \"screenshotone-api-sdk\";\n\n// create API client\nconst client = new screenshotone.Client(\"\u003caccess key\u003e\", \"\u003csecret key\u003e\");\n\n// set up options\nconst options = screenshotone.TakeOptions.url(\"https://example.com\")\n    .delay(3)\n    .blockAds(true);\n\n// generate URL\nconst url = client.generateTakeURL(options); // or generateSignedTakeURL(options) for signed URLs\nconsole.log(url);\n// expected output: https://api.screenshotone.com/take?url=https%3A%2F%2Fexample.com\u0026delay=3\u0026block_ads=true\u0026access_key=%3Caccess+key%3E\n\n// or download the screenshot\nconst imageBlob = await client.take(options);\nconst buffer = Buffer.from(await imageBlob.arrayBuffer());\nfs.writeFileSync(\"example.png\", buffer);\n// the screenshot is store in the example.png file\n```\n\n[The API supports other languages, too.](https://screenshotone.com/docs/code-examples/)\n\n## Conclusion\n\n[The ScreenshotOne screenshot API](https://screenshotone.com/) is a robust tool designed to accommodate a variety of programming needs across different languages. \n\nIts versatility in supporting multiple languages and its extensive feature set make it an ideal choice for developers looking to integrate screenshot capabilities into their applications. Whether for automation, testing, or documentation, ScreenshotOne provides the tools necessary to capture and manage screenshots effectively.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscreenshotone%2Fabout","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscreenshotone%2Fabout","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscreenshotone%2Fabout/lists"}