API

Read this site as data

Everything on lepadatu.dev — the services, the prices, the work — is also available as JSON, so an agent or an integration never has to scrape the pages. Read-only, no key, no rate limit, CORS open to everyone.

BASE URL
https://lepadatu.dev/api/v1
VERSION
1.0.0

Endpoints

GET/api/v1/health

Is the API serving?

Returns status, version and a timestamp. This is the target of the status link in the API catalog.

{
  "status": "pass",
  "version": "1.0.0",
  "checkedAt": "2026-09-01T09:00:00.000Z"
}

GET/api/v1/profile

Who I am and what things cost

Profile, contact details, the three service lines, the pricing tiers, the four-day process, the guarantee and the headline numbers.

{
  "name": "Mihail Lepadatu",
  "role": "Freelance web developer & AI builder",
  "location": { "city": "Marbella", "country": "ES", … },
  "contact": { "email": "…", "whatsapp": "…" },
  "services": [ … ],
  "pricing": [ { "name": "Landing", "price": "from €500", … } ],
  "process": [ … ],
  "guarantee": [ … ],
  "stats": [ … ]
}

GET/api/v1/projects

Shipped work

Client sites with live URLs, tags and screenshots, plus the longer case studies.

{
  "projects": [
    {
      "name": "Nøva Marbella",
      "url": "https://novamarbella.com/",
      "description": "Luxury property portal for the Costa del Sol …",
      "tags": ["Real Estate", "4 Languages", "SEO"],
      "image": "https://lepadatu.dev/work/novamarbella.jpg"
    }
  ],
  "caseStudies": [ … ]
}

Machine discovery

This API is listed in an RFC 9727 API catalog, served as an RFC 9264 linkset. Start there and follow the links — no hardcoded paths needed.

Something you need that isn't here? Ask me, or head back to the site.