# Jrdz — 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.

> 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.

**Category:** Business Directories | **Website:** [jrdz.dev/about](https://jrdz.dev/about) | **Docs:** [parse.bot/marketplace/27d4ef0b-bc4d-4765-8211-ba3ecbd0417b/jrdz-dev-api](https://parse.bot/marketplace/27d4ef0b-bc4d-4765-8211-ba3ecbd0417b/jrdz-dev-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-jrdz-dev-api-27d4ef0b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_post

Returns the full content of a single blog post by its URL slug path. Includes the article title, publication date, tags, and full text content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Post identifier: accepts a full post URL (e.g. 'https://jrdz.dev/blog/cloud/azure/fundamentals/') or a relative path slug (e.g. 'cloud/azure/fundamentals'). The base URL and 'blog/' prefix are handled automatically. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jrdz-dev-api-27d4ef0b/get_post \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_profile

Returns the full professional profile/CV including personal info, about summary, projects, work experience, education, certifications, and skills. Supports English and Spanish locales.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `lang` | string | No | Language locale for the profile content. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jrdz-dev-api-27d4ef0b/get_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"lang":"<string>"}'
```

### list_posts

Returns all blog posts from the RSS feed. Posts can be filtered by category and language. Each post includes title, link, description, publication date, and category tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter posts by main category slug. Omitting returns all posts. |
| `lang` | string | No | Language locale for posts. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jrdz-dev-api-27d4ef0b/list_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","lang":"<string>"}'
```
