# Myown — 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 and browse blog posts from MyOwnWebsite.com to discover business management tips and insights for service businesses like salons, pet care facilities, and spas. Access individual articles by title or browse through paginated lists of all available posts.

**Category:** News & Media | **Website:** [myown.website/](https://myown.website/) | **Docs:** [parse.bot/marketplace/944e308c-c2ac-401c-8397-b4053798dd78/myown-website-api](https://parse.bot/marketplace/944e308c-c2ac-401c-8397-b4053798dd78/myown-website-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-myown-website-api-944e308c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_blog_post

Get full content of a single blog post by its slug. Returns title, published date, author, meta description, featured image URL, and the full article text with markdown-style headings. The slug is available from list_blog_posts results. A missing or invalid slug returns input_not_found.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Blog post slug path (e.g. 'blog/client-intake-form-automation' or 'best-salon-software'). Available from list_blog_posts results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-myown-website-api-944e308c/get_blog_post \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_blog_posts

List blog posts with pagination. Returns post summaries including title, slug, image, description, published date, and author. Posts are ordered most-recent-first. Each page contains up to items_per_page results; use the has_next_page flag or the SDK's automatic pagination to walk the full archive.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `items_per_page` | integer | No | Number of posts per page, between 1 and 20. |
| `page` | integer | No | Page number for pagination (starts at 1). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-myown-website-api-944e308c/list_blog_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"items_per_page":"<integer>","page":"<integer>"}'
```
