-
Notifications
You must be signed in to change notification settings - Fork 7
feat: new career page #263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
d396911
feat: new career page
Daryna-del 7376c73
fix: rename variable
Daryna-del e101923
fix: refactore
Daryna-del 39e4cbd
fix: minor md issues
Daryna-del 065e766
chore: upgrade version of marketing-pages
Daryna-del 02c1fbc
chore: upgrade marketing-pages version
Daryna-del a0a0a98
chore: improve list formatting and remave open postion
Daryna-del a86baab
chore: improve list formatting
Daryna-del e14459d
chore: add dark theme for open position pages
Daryna-del 7d70799
chore: update marketing-pages with improvements
Daryna-del 1068cbd
chore: adjust list formatting
Daryna-del 3052c4d
fix: add variable isDarkModeAllow
Daryna-del File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| import type { ApiFunctionsContext } from '@redocly/config'; | ||
|
|
||
| const GOOGLE_APPS_SCRIPT_URL = process.env.GOOGLE_APPS_SCRIPT_URL; | ||
| const MAX_RETRIES = 3; | ||
| const RETRY_DELAY_MS = 500; | ||
|
|
||
| export default async function (request: Request, context: ApiFunctionsContext) { | ||
| if (!GOOGLE_APPS_SCRIPT_URL) { | ||
| return context.status(503).json({ error: 'GOOGLE_APPS_SCRIPT_URL is not configured' }); | ||
| } | ||
|
|
||
| let body: unknown; | ||
| try { | ||
| body = await request.json(); | ||
| } catch { | ||
| return context.status(400).json({ error: 'Invalid JSON body' }); | ||
| } | ||
|
|
||
| try { | ||
| const res = await postWithRetry(GOOGLE_APPS_SCRIPT_URL, body); | ||
| const data = await res.json().catch(() => ({})); | ||
| return context.status(res.status).json(data); | ||
| } catch { | ||
| return context.status(502).json({ error: 'Upstream request failed' }); | ||
| } | ||
| } | ||
|
|
||
| async function postWithRetry( | ||
| url: string, | ||
| body: unknown, | ||
| retries = MAX_RETRIES, | ||
| ): Promise<Response> { | ||
| for (let attempt = 0; attempt <= retries; attempt++) { | ||
| try { | ||
| const res = await fetch(url, { | ||
| method: 'POST', | ||
| headers: { 'Content-Type': 'application/json' }, | ||
| body: JSON.stringify(body), | ||
| }); | ||
| if (res.ok || attempt === retries) return res; | ||
| } catch { | ||
| if (attempt === retries) throw new Error('Upstream request failed'); | ||
| } | ||
| await new Promise((r) => setTimeout(r, RETRY_DELAY_MS)); | ||
| } | ||
| throw new Error('Upstream request failed'); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| import Page from '@redocly/marketing-pages/templates/OpenPosition.js'; | ||
|
|
||
| export default Page; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| --- | ||
| template: ../../@theme/templates/OpenPosition | ||
| title: Data Engineer | ||
| locations: | ||
| - Remote | ||
| employmentType: Full time | ||
| slug: /careers/data-engineer | ||
| --- | ||
|
|
||
| #### About the role | ||
| We’re looking for a data scientist who bridges technical depth with curiosity. You’ll help Redocly turn data into insight — driving smarter product, growth, and business decisions. This role combines data governance, analytics, and development. You’ll build reliable data pipelines, improve observability, and uncover meaningful patterns that guide how we grow and evolve. You’ll work closely with product and technical teams to analyze user behavior, run experiments, build predictive models, and turn complex findings into actionable recommendations. You’ll also design and support systems for collecting, transforming, and analyzing data across our stack. | ||
|
|
||
| #### What you'll do | ||
| - Analyze product and user behavior to uncover trends, bottlenecks, and opportunities. | ||
| - Design and evaluate experiments (A/B tests) to guide product and growth decisions. | ||
| - Build and maintain data pipelines, ETL processes, and dashboards for analytics and reporting. | ||
| - Develop and validate statistical and machine learning models for prediction, segmentation, and forecasting. | ||
| - Design and optimize data models for new features and analytics (e.g., using dbt). | ||
| - Work with event-driven architectures and standards like AsyncAPI and CloudEvents. | ||
| - Collaborate with engineers to improve data quality, consistency, and governance across systems. | ||
| - Use observability and tracing tools (e.g., OpenTelemetry) to monitor and improve performance. | ||
| - Create visualizations and reports that clearly communicate results to technical and non-technical audiences. | ||
| - Support existing frontend and backend systems related to analytics and data processing. | ||
| - Champion experimentation, measurement, and data-driven decision-making across teams. | ||
|
|
||
| #### What we’re looking for | ||
| - 5+ years of software engineering experience, with 3+ years focused on data science or analytics | ||
| - Strong SQL skills and experience with data modeling (dbt preferred) | ||
| - Solid understanding of statistics, hypothesis testing, and experimental design | ||
| - Proven experience in data governance, analytics, and backend systems | ||
| - Familiarity with columnar databases or analytics engines (ClickHouse, Postgres, etc.) | ||
| - Experience with modern data visualization tools | ||
| - Strong analytical mindset, attention to detail, and clear communication | ||
| - Passionate about clarity, simplicity, and quality in both data and code | ||
| - English proficiency: Upper-Intermediate or higher | ||
|
|
||
| #### Nice to have | ||
DmitryAnansky marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - Understanding of product analytics and behavioral data | ||
| - Experience with causal inference or time-series modeling | ||
| - Strong proficiency with Node.js, React, JavaScript, and TypeScript | ||
| - Experience with frontend or backend performance optimization | ||
| - Familiarity with Git-based workflows and CI/CD for data pipelines | ||
|
|
||
| #### How you’ll know you’re doing a great job | ||
| - Teams make better product decisions, faster, because of your insights. | ||
| - Data pipelines are trusted, observable, and performant. | ||
| - Experiments drive measurable product and business outcomes. | ||
| - Metrics and dashboards are used across teams — not just built once. | ||
| - You’re the go-to person for clarity when questions arise about “what the data says.”. | ||
|
|
||
| #### About Redocly | ||
| Redocly builds tools that accelerate API ubiquity. Our platform helps teams create world-class developer experiences — from API documentation and catalogs to internal developer hubs and public showcases. We’re a globally distributed team that values clarity, autonomy, and craftsmanship. You’ll work alongside engineers, designers, and writers who love building tools that make technical work simpler and more joyful. | ||
|
|
||
| #### Life at Redocly | ||
| Redocly is a fun, supportive, and high-performing environment. We celebrate small victories, stay curious, and keep focused on progress. If you enjoy complex challenges, meaningful data, and building systems that empower others — you’ll feel right at home here. | ||
|
|
||
| #### Trying our products while applying? | ||
| Add `RECR-` to your name during trial registration, so we can spot candidates among trial users. Thanks! | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| --- | ||
| template: ../../@theme/templates/OpenPosition | ||
| title: Developer Marketer | ||
| locations: | ||
| - Ukraine, Office | ||
| employmentType: Full time | ||
| slug: /careers/developer-marketer | ||
| --- | ||
|
|
||
| Redocly helps companies build better developer experiences. Our products (Reunite, Redoc, Revel, Reef, and Realm) empower teams to create, manage, and share APIs beautifully. We're looking for a senior sales professional who can help more developers and organizations discover that value — and convert trials into long-term customers. | ||
|
|
||
| #### What you'll do | ||
| You'll focus on helping teams move from trying Redocly to loving and buying it. You'll combine technical understanding, empathy for developers, and data-driven sales skills to grow conversions and revenue. You'll: | ||
| - Engage with free-trial users to understand their goals and blockers. | ||
| - Create follow-up sequences and campaigns that feel helpful, not pushy. | ||
| - Use CRM and analytics tools to identify high-potential accounts. | ||
| - Work with our product and technical teams to clarify use cases, pricing, and ROI. | ||
| - Help improve onboarding flows and trial experiences based on user feedback. | ||
| - Write clear, authentic sales copy and outreach messages. | ||
| This is not a cold-calling role — it's a thoughtful, consultative position... | ||
|
|
||
| #### You'll love this role if you... | ||
| - Understand technical products or developer-facing tools. | ||
| - Are comfortable using and interpreting data (CRM, analytics, funnels). | ||
| - Have strong written and verbal communication skills. | ||
| - Enjoy collaborating with marketing and product teams. | ||
| - Can balance empathy and persuasion — helping customers make confident decisions. | ||
| Bonus points if you've worked in SaaS, API, or developer-tools sales before. | ||
|
|
||
| #### How you'll know you're doing a great job | ||
| - Conversion rate from trial to paid increases. | ||
| - Absolute number of new paying customers grows steadily. | ||
| - Sales cycles shorten as you improve communication and clarity. | ||
| - Customer feedback improves, with users describing smoother onboarding and better support. | ||
|
|
||
| #### How you’ll know you’re doing a great job | ||
| - Teams make better product decisions, faster, because of your insights. | ||
| - Data pipelines are trusted, observable, and performant. | ||
| - Experiments drive measurable product and business outcomes. | ||
| - Metrics and dashboards are used across teams — not just built once. | ||
| - You’re the go-to person for clarity when questions arise about “what the data says.”. | ||
|
|
||
| ### 30-60-90 day plan | ||
|
|
||
| #### First 30 days | ||
| - Learn Redocly’s product lineup, sales funnel, and customer segments. | ||
| - Review current trial process, analytics, and CRM data. | ||
| - Reach out to a small set of trial users to test messaging. | ||
|
|
||
| #### Next 30 days | ||
| - Design and implement an improved trial-to-conversion sequence. | ||
| - Begin A/B testing messages and tracking engagement. | ||
| - Collaborate with the developer marketer on shared campaigns. | ||
|
|
||
| #### Next 30 days | ||
| - Optimize the funnel with data insights. | ||
| - Build a repeatable playbook for engaging trials. | ||
| - Identify expansion or upsell opportunities among active customers. | ||
|
|
||
| #### About Redocly | ||
| Redocly builds tools that accelerate API ubiquity. Our platform helps teams create world-class developer experiences — from API documentation and catalogs to internal developer hubs and public showcases. We’re a globally distributed team that values clarity, autonomy, and craftsmanship. You’ll work alongside engineers, designers, and writers who love building tools that make technical work simpler and more joyful. | ||
|
|
||
| #### Life at Redocly | ||
| Redocly is a fun, supportive, and high-performing environment. We celebrate small victories, stay curious, and keep focused on progress. If you enjoy complex challenges, meaningful data, and building systems that empower others — you’ll feel right at home here. | ||
|
|
||
| #### Trying our products while applying? | ||
| Add RECR- to your name during trial registration, so we can spot candidates among trial users. Thanks! |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.