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

> Search and browse articles from Elchinbek Jabbarbergenov's blog to discover insights on IT project management and business analysis. Retrieve detailed information about specific pages and explore the full collection of published content on these topics.

**Category:** News & Media | **Website:** [elchin.blog/](https://elchin.blog/) | **Docs:** [parse.bot/marketplace/10386dfc-32ce-4424-9230-266203f85419/elchin-blog-api](https://parse.bot/marketplace/10386dfc-32ce-4424-9230-266203f85419/elchin-blog-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-elchin-blog-api-10386dfc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_page

Retrieve a single page by its numeric ID or URL slug. Returns full page content (HTML), metadata, and excerpt. Exactly one of id or slug must be provided.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `id` | string | No | Numeric page ID (e.g. '67'). |
| `slug` | string | No | URL slug of the page (e.g. 'home', 'blog', 'contact', 'privacy-policy'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-elchin-blog-api-10386dfc/get_page \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"<string>","slug":"<string>"}'
```

### list_pages

List all published pages on the blog with pagination. Returns page metadata including title, slug, excerpt, dates, and links. Results are ordered by date descending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of pages to return per request (max 100). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-elchin-blog-api-10386dfc/list_pages \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>"}'
```

### search

Full-text search across all public content on the blog. Returns matching items with title, URL, type, and subtype. Optionally filter by content subtype.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of results to return per request (max 100). |
| `query` | string | No | Search query string. Empty string returns all content. |
| `subtype` | string | No | Filter results by content subtype: 'page', 'post', 'elementor_library'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-elchin-blog-api-10386dfc/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","query":"<string>","subtype":"<string>"}'
```
