Recruitment Data API
Designing a scalable API ecosystem to democratize access to aggregated job market data. A case study on Product-Led Growth (PLG), technical governance, and tiered monetization.
My Role
API Product Designer
Defined 5 core endpoints, JSON schemas, error protocols, and commercial pricing tiers.
The Business Model
Freemium to Enterprise Funnel:
Designed a "Beta Key" system with strict rate limits to encourage conversion to Production Keys.
Technical Governance
Implemented standard HTTP 429 protocols to manage traffic load.
Monetization & Unit Economics
Freemium
- • 50 Search / day
- • 50 Trending / day
- • 10 Email Alerts
Add-on
- • 1,000 Search / day
- • 1,000 Trending / day
- • 500 Email Alerts
Pro
- • 20k Search / day
- • 20k Trending / day
- • 10k Email Alerts
Pricing Logic
API Design & Schema
Queries aggregated job postings. Includes optional parameters like full_des (Full Description) and link (Direct Application Link) to support diverse frontend needs.
| Param | Description | Default |
|---|---|---|
| j | Job string (e.g. "sales+Manager") | - |
| l | Location (City/Zip) | - |
| full_des | Show full job description | 0 (False) |
| link | Bypass JS for direct link | 0 (False) |
{ "count": 2, "total": 145, "jobs": [ { "title": "Web Designer", "company": "Cenfos Holdings Inc", "date": "2021-03-31T05:00:00Z", "city": ["Vancouver, BC"], "industry": "IT / Software Systems", "description": "Research and evaluate a variety of interactive media..." } ] }