{"id":50371492,"url":"https://github.com/copperline-labs/rendex-zapier","last_synced_at":"2026-05-30T07:03:46.463Z","repository":{"id":351692923,"uuid":"1212038256","full_name":"copperline-labs/rendex-zapier","owner":"copperline-labs","description":"Screenshot \u0026 rendering API integration for Zapier — capture screenshots, generate PDFs, and render HTML to images in your Zaps","archived":false,"fork":false,"pushed_at":"2026-05-26T03:17:08.000Z","size":591,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-26T05:13:41.343Z","etag":null,"topics":["api","automation","html-to-image","pdf","rendering","rendex","screenshot","zapier"],"latest_commit_sha":null,"homepage":"https://rendex.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/copperline-labs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2026-04-16T02:11:09.000Z","updated_at":"2026-05-26T03:17:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/copperline-labs/rendex-zapier","commit_stats":null,"previous_names":["copperline-labs/rendex-zapier"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/copperline-labs/rendex-zapier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/copperline-labs%2Frendex-zapier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/copperline-labs%2Frendex-zapier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/copperline-labs%2Frendex-zapier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/copperline-labs%2Frendex-zapier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/copperline-labs","download_url":"https://codeload.github.com/copperline-labs/rendex-zapier/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/copperline-labs%2Frendex-zapier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33682998,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"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":["api","automation","html-to-image","pdf","rendering","rendex","screenshot","zapier"],"created_at":"2026-05-30T07:03:45.658Z","updated_at":"2026-05-30T07:03:46.455Z","avatar_url":"https://github.com/copperline-labs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rendex for Zapier\n\nCapture screenshots, generate PDFs, and process batch captures directly from your Zaps using the [Rendex](https://rendex.dev) rendering API.\n\n## Features\n\n- **Capture Screenshot** — Render any URL, raw HTML, or Markdown to PNG, JPEG, or WebP (with device presets, resize, and element-hiding controls)\n- **Extract Text From a Web Page** — Pull the clean article text (Markdown, HTML, or JSON) plus title, author, and excerpt from any URL\n- **Template Values** — Drop `{{placeholders}}` into your HTML or Markdown and fill them from earlier Zap steps, so one template produces a new invoice, report, or certificate every time the Zap runs\n- **Generate PDF** — Convert pages to PDF with custom sizes, margins, and orientation\n- **Capture Async** — Submit long-running captures with optional webhook callbacks\n- **Submit Batch** — Process up to 500 URLs in a single request\n- **Get Job Status** — Poll async capture results by job ID\n- **Get Batch Status** — Check batch progress and retrieve all results\n- **New Screenshot Ready** (trigger) — Fires when an async capture completes via webhook\n\n## Template Values\n\nBuild one template, reuse it for every record. Write your HTML or Markdown with\n`{{placeholders}}` — for example `\u003ch1\u003eInvoice {{number}}\u003c/h1\u003e\u003cp\u003eTotal: {{total}}\u003c/p\u003e` —\nthen map fields from earlier steps in your Zap into the **Template Values** dictionary\n(`number` → `INV-014`, `total` → `$2,400`). Each time the Zap runs, Rendex fills in the\ntemplate and returns a finished image or PDF. Loops and nested values are supported, and\nTemplate Values only applies when you provide HTML or Markdown (not a URL).\n\n## Authentication\n\nThis integration uses API Key authentication. Get your key at [rendex.dev/dashboard/keys](https://rendex.dev/dashboard/keys).\n\nKeys follow the format `rdx_` followed by 22 alphanumeric characters.\n\n## Development\n\n```bash\n# Install dependencies\nnpm install\n\n# Build TypeScript\nnpm run build\n\n# Type-check without emitting\nnpm run typecheck\n\n# Run tests\nnpm test\n\n# Validate Zapier app structure\nnpx zapier validate\n\n# Generate brand logo (requires RENDEX_API_KEY)\nnpm run generate-logo\n```\n\n## Deployment\n\nThis package is deployed via the Zapier Platform CLI from the public mirror repo [copperline-labs/rendex-zapier](https://github.com/copperline-labs/rendex-zapier). See the release runbook for the full release flow.\n\n```bash\nzapier push       # Upload to Zapier\nzapier promote    # Submit for review\n```\n\n## Links\n\n- [Rendex API Documentation](https://rendex.dev/docs)\n- [Rendex Dashboard](https://rendex.dev/dashboard)\n- [Zapier Developer Platform](https://developer.zapier.com)\n\n## License\n\nMIT — Copperline Labs LLC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcopperline-labs%2Frendex-zapier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcopperline-labs%2Frendex-zapier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcopperline-labs%2Frendex-zapier/lists"}