Full-stack/jobs/currency

Build a remote job board — live listings, category filters, search

A remote job board is one of the most monetisable developer side projects — and the hardest part is sourcing fresh listing data. The APlicious /jobs namespace gives you 3,000+ live remote listings with clean structured JSON.

Get free API key Full docs
01

List remote jobs by category

Fetch paginated jobs for any of 25+ categories:

const res = await fetch(
  'https://aplicious.com/api/v1/jobs/remote?category=software-dev&limit=20&page=1',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
const { data } = await res.json();
// { total, page, jobs: [{ title, company, location, salary, apply_url, tags }] }
02

Search by keyword

Full-text search across titles and descriptions:

const res = await fetch(
  'https://aplicious.com/api/v1/jobs/remote?search=next.js+typescript&limit=10',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
03

Category navigation from the API

Drive your sidebar nav directly from the categories endpoint — always shows live counts:

const res = await fetch(
  'https://aplicious.com/api/v1/jobs/categories',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
// [{ slug: "software-dev", label: "Software Dev", count: 847 }]
04

Show salary in local currency

Combine /jobs with /currency/convert to display salaries in the visitor's local currency — both from your single plan.

// After fetching the job with salary in USD:
const fx = await fetch(
  'https://aplicious.com/api/v1/currency/convert?from=USD&to=INR&amount=120000',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
// Display "₹1.00 Cr / year" alongside the USD figure
05

Monetise with affiliate apply links

Every job listing includes an apply_url. Wrap these in an affiliate redirect to earn a commission from applicants who convert — a common job board monetisation model.

Why APlicious?

Combining /jobs with /currency (salary conversion), /news (industry news sidebar), and /finance (job market data) is trivial on APlicious — same key, same quota. A four-section app without four API bills.

Ready to build?

Free tier · 500 calls/month · No credit card · All 34 APIs included

Get your free API key

More guides

Build a Finance Dashboard with Stocks, SIP & Forex APIs

Read guide

Build a News Aggregator with the APlicious News API

Read guide

Build a Weather Widget with the APlicious Weather API

Read guide