Full-stack/legal

Build a legal compliance tool — employment rights, NDA generator, GDPR checklist

HR tools, SaaS compliance dashboards, and freelance platforms all need legal data for multiple countries. The APlicious /legal namespace covers employment rights, wage floors, contract generation, and GDPR/data-privacy checklists for 35+ countries.

Get free API key Full docs
01

Minimum wage lookup

Show statutory minimum wage for any country — useful for salary calculators and HR tools:

const res = await fetch(
  'https://aplicious.com/api/v1/legal/minimum-wage?country=DE',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
const { data } = await res.json();
// { country: "DE", currency: "EUR",
//   national_minimum_hourly: 12.41,
//   monthly_equivalent: 2149, effective_date: "2024-01-01" }
02

Employment rights reference

Return statutory leave, notice periods, and working hour limits — great for HR onboarding tools:

const res = await fetch(
  'https://aplicious.com/api/v1/legal/employment-rights?country=GB',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
// { annual_leave_days: 28, maternity_leave_weeks: 52,
//   paternity_leave_weeks: 2,
//   max_work_hours_per_week: 48, notice_period_weeks_min: 1 }
03

GDPR compliance checklist

Generate a checklist tailored to the company type — drives SaaS compliance products:

const res = await fetch(
  'https://aplicious.com/api/v1/legal/gdpr-checklist?company_type=saas',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
// { items: [{ id, category, requirement,
//   status: "required", priority: "high" }] }
04

NDA generator

Generate a jurisdiction-specific NDA from structured inputs — no legal copywriting needed:

const res = await fetch(
  'https://aplicious.com/api/v1/legal/nda-generator',
  { method: 'POST',
    headers: { 'X-API-Key': process.env.LAPI_KEY,
               'Content-Type': 'application/json' },
    body: JSON.stringify({
      disclosing_party: "Acme Corp",
      receiving_party: "Jane Doe",
      jurisdiction: "England and Wales",
      purpose: "Evaluating a potential business partnership",
      duration_years: 2
    })
  }
);
// { nda_text: "...", jurisdiction, effective_date }
05

VAT rates by country (bonus)

Show VAT/GST rates for pricing pages and invoice generators:

const res = await fetch(
  'https://aplicious.com/api/v1/legal/vat-rates?country=FR',
  { headers: { 'X-API-Key': process.env.LAPI_KEY } }
);
// { country: "FR", standard_rate_pct: 20,
//   reduced_rates: [{ rate_pct: 5.5, applies_to: "Food" }] }

Why APlicious?

Legal data pairs naturally with /jobs (employment contracts, visa permits) and /property (stamp duty, capital gains tax rules) — all namespaces on the same plan, same key.

Ready to build?

Free tier · 250 calls/month · No credit card · All 10 APIs included

Get your free API key

More guides

Build a Remote Job Board with the APlicious Jobs API

Read guide

Build a Property Calculator with the APlicious Property API

Read guide

Build a Finance Dashboard with Stocks, SIP & Forex APIs

Read guide