Discover/lukaloehr API
live

lukaloehr APIlukaloehr.com

Access Luka Löhr's developer portfolio via API. Retrieve profile data, full project listings with tech stacks, and detailed project pages in structured JSON.

Endpoint health
verified 6d ago
get_project_detail
get_profile
get_projects
3/3 passing latest checkself-healing
Endpoints
3
Updated
20d ago

What is the lukaloehr API?

The lukaloehr.com API exposes 3 endpoints covering Luka Löhr's developer portfolio: profile metadata, a full project listing, and individual project detail pages. The get_profile endpoint returns 10 structured fields including skills, location, nationality, and a bio statement. get_projects returns every portfolio project with its technology stack and status in a single response.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/4c1ddfe3-f183-43c9-8d26-8874b1939aac/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4c1ddfe3-f183-43c9-8d26-8874b1939aac/get_profile' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Returns Luka Löhr's developer profile including name, location, skills, contact info, and bio statement. All data is extracted from the portfolio's structured metadata.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "url": "string",
    "name": "string",
    "email": "string",
    "github": "string",
    "skills": "array of skill strings",
    "country": "string",
    "location": "string",
    "statement": "string",
    "description": "string",
    "nationality": "string",
    "alternate_name": "string"
  },
  "sample": {
    "data": {
      "url": "https://example.com",
      "name": "John Doe",
      "email": "[email protected]",
      "github": "https://github.com/johndoe",
      "skills": [
        "Flutter",
        "Swift",
        "TypeScript",
        "Bun",
        "AI",
        "macOS development",
        "mobile development"
      ],
      "country": "DE",
      "location": "Karlsruhe",
      "statement": "Hey, I'm John. I make apps and tools that people actually find useful.",
      "description": "Developer building apps and tools — from user-facing products to internal utilities. Creator of LGKA+, SchoolCode, Live Engine, Orin, and Receipt AI.",
      "nationality": "DE",
      "alternate_name": "John Doe"
    },
    "status": "success"
  }
}

About the lukaloehr API

Profile Data

The get_profile endpoint returns a flat object with 10 fields drawn from the portfolio's structured metadata. Fields include name, email, github, country, location, nationality, skills (an array of technology strings), statement, description, and the canonical url. No input parameters are required.

Project Listings

The get_projects endpoint returns a total count alongside a projects array. Each project object includes its name, description, current status, technology stack, and an external URL. The portfolio has a fixed set of projects, so results are always returned as a single page with no pagination parameters needed.

Project Detail Pages

The get_project_detail endpoint accepts a slug string parameter corresponding to the path segment in the project's portfolio URL. It returns the project title, an intro paragraph, and a sections array where each element carries a heading and content field. Currently, only the ephraim slug resolves to a populated detail page on the site. Other slugs may return empty or minimal responses.

Reliability & maintenanceVerified

The lukaloehr API is a managed, monitored endpoint for lukaloehr.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lukaloehr.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official lukaloehr.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate a developer's contact details (email, github) into a recruiting CRM without manual data entry.
  • Display Luka Löhr's skills array in a third-party portfolio aggregator or talent directory.
  • Render project cards with status and tech stack by consuming the get_projects response.
  • Pull the ephraim project's sections content to embed structured project write-ups in an external site.
  • Track portfolio changes over time by periodically calling get_projects and diffing the total and project list.
  • Populate a personal branding page with statement and description fields sourced directly from the portfolio.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does lukaloehr.com have an official developer API?+
No. lukaloehr.com is a personal developer portfolio site and does not publish an official public API or developer documentation.
What does get_project_detail return, and which projects have detail pages?+
The endpoint returns a title, intro paragraph, and a sections array of heading-and-content blocks for the given slug. Currently only the ephraim slug has a populated detail page on the site. Passing other slugs may yield an empty or minimal response.
Does the API expose blog posts, a work timeline, or other content sections from the portfolio?+
Not currently. The API covers the profile metadata, the project listing, and individual project detail pages. You can fork it on Parse and revise it to add an endpoint targeting any additional content sections that exist on the site.
Is the projects list paginated, and can it be filtered by technology or status?+
The get_projects endpoint returns all projects in a single response with no pagination parameters. It does not accept filter inputs for technology stack or status. The projects array includes both fields, so client-side filtering on status or stack values is straightforward. You can fork the API on Parse and revise it to add server-side filtering if needed.
How fresh is the data returned by these endpoints?+
The data reflects the current state of lukaloehr.com at the time of the request. Because the source is a personal portfolio, updates depend on when the site owner publishes changes. Frequently polling for content drift is the most reliable way to detect updates.
Page content last updated . Spec covers 3 endpoints from lukaloehr.com.
Related APIs in B2b DirectorySee all →
jrdz.dev API
Retrieve Jonathan Rodriguez's professional portfolio, CV information, and tech blog content directly from jrdz.dev. Access his profile details, browse published posts, and read individual articles to learn about his development experience and technical insights.
kampuskago.ng API
kampuskago.ng API
merc.guru API
Browse and retrieve project listings directly from merc.guru to discover available opportunities and details. Find specific projects that match your interests without visiting the website manually.
ekimmigration.com API
Access immigration project listings from EK Immigration with details including project names, countries, advantages, costs, and processing times to compare and evaluate your relocation options. Find comprehensive information about available immigration programs to make informed decisions about your migration plans.
freelancer.de API
Search and discover freelancers on freelancer.de by their skills and expertise, then view detailed profiles with ratings, experience metrics, and portfolio information. Find the perfect freelancer for your project by browsing skill sets and comparing professional backgrounds all in one place.
laby.net API
Retrieve Minecraft player profiles, name history, badges, and Laby.net site statistics. Look up any player by username or UUID, explore featured community members, and access platform-wide profile and skin data.
karlancer.com API
Search and discover open freelance projects on Karlancer with detailed information like titles, descriptions, required skills, budgets, proposal counts, and urgency levels. Find the right opportunities that match your expertise and stay updated on project status and availability.
toptal.com API
Search Toptal's freelance network to find talented professionals filtered by skill and category, then access their complete profiles including bio, skills, work experience, education, and current availability. Streamline your hiring process by browsing vetted freelancers and reviewing their detailed qualifications all in one place.