# Lukaloehr — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Explore Luka Löhr's developer portfolio by retrieving his profile information, browsing his complete project listings, and diving into detailed pages for individual projects. Get quick access to a developer's background, work history, and technical project details all in one place.

**Category:** Business Directories | **Website:** [lukaloehr.com/](https://lukaloehr.com/) | **Docs:** [parse.bot/marketplace/92b9d37e-fb7c-4752-9796-b3b1f9e9e96a/lukaloehr-com-api](https://parse.bot/marketplace/92b9d37e-fb7c-4752-9796-b3b1f9e9e96a/lukaloehr-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-lukaloehr-com-api-92b9d37e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_profile

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lukaloehr-com-api-92b9d37e/get_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_project_detail

Returns the full detail page for a specific project identified by its URL slug. Includes the intro paragraph and all content sections with headings. Currently only 'ephraim' has a detail page on the site.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the project (e.g. 'ephraim'). Corresponds to the path segment in the project's URL on lukaloehr.com. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lukaloehr-com-api-92b9d37e/get_project_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_projects

Returns all projects listed on the portfolio with name, description, current status, technology stack, and external URL. Results are returned as a single page since the portfolio has a fixed set of projects.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lukaloehr-com-api-92b9d37e/get_projects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
