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.

This API takes change requests — .
Endpoint health
verified 3d ago
get_profile
get_projects
get_project_detail
3/3 passing latest checkself-healing
Endpoints
3
Updated
17d 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'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace lukaloehr-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: LukaLoehr portfolio SDK — profile, projects, and detail pages."""
from parse_apis.lukaloehr_com_api import LukaLoehr, Slug, ProjectNotFound

client = LukaLoehr()

# Fetch the developer profile
profile = client.profiles.get()
print(f"Name: {profile.name}, Location: {profile.location}")
print(f"Skills: {', '.join(profile.skills)}")

# List all portfolio projects
for project in client.projects.list(limit=5):
    print(f"{project.name} [{project.status}] — {', '.join(project.technologies[:3])}")

# Drill into a specific project's detail page using the Slug enum
try:
    detail = client.project_details.get(slug=Slug.EPHRAIM)
    print(f"\nDetail: {detail.title} — {detail.intro}")
    for section in detail.sections[:2]:
        print(f"  Section: {section.heading}")
except ProjectNotFound as exc:
    print(f"Project not found: {exc}")

print("\nexercised: profiles.get / projects.list / project_details.get")
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
3d 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 →
crunchbase.com API
Search and retrieve detailed information about companies, investors, and key people to discover funding opportunities, track market competitors, and analyze investment trends. Access comprehensive profiles including organization details, investor backgrounds, and complete funding round histories all in one place.
dnb.com API
Search millions of companies in Dun & Bradstreet's global business directory to find detailed company profiles and verify D-U-N-S numbers. Look up key business information like company details and identifiers to support due diligence, sales prospecting, and business intelligence needs.
opencorporates.com API
Access comprehensive company registration data, officer details, and filing histories from OpenCorporates across jurisdictions worldwide to research businesses and their leadership. Search for specific companies or officers, retrieve detailed corporate information, and explore filing records to support due diligence, compliance checks, and business intelligence.
ycombinator.com API
Access comprehensive data from the Y Combinator ecosystem, including company profiles, founder and partner information, job listings, and the YC library. Filter companies by batch, industry, and hiring status, and explore detailed profiles with social links, team information, and funding metadata.
thomasnet.com API
Find industrial suppliers and access their detailed business profiles including company information, revenue data, and certifications from ThomasNet's comprehensive directory. Search for specific suppliers or retrieve bulk leads to build targeted lists of manufacturers and distributors for your sourcing needs.
ulprospector.com API
Search and browse chemicals and materials from the UL Prospector database across multiple industries, then retrieve detailed specifications and properties for any material you find. Discover industry-specific products and access comprehensive material information to support your sourcing and product development needs.
kvk.nl API
Search for Dutch businesses and retrieve detailed company information such as registration numbers, addresses, and business details directly from the official KVK trade register. Look up specific companies to access their official registration data and verify business information in the Netherlands.
pappers.fr API
Search French companies and directors to access detailed business profiles, ownership structures, trademark information, and legal filings all in one place. Build professional networks, track company leadership, and monitor business intelligence across France's official registry data.