# Wikihow — 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 retrieve wikiHow articles with complete instructions, including all steps, ingredients, tips, and categories organized in a structured format. Instantly access random articles or find exactly what you need with powerful search functionality to learn how to do virtually anything.

**Category:** Education | **Website:** [wikihow.com/](https://wikihow.com/) | **Docs:** [parse.bot/marketplace/40a6d3bd-93ef-4049-a44f-185b9a589215/wikihow-com-api](https://parse.bot/marketplace/40a6d3bd-93ef-4049-a44f-185b9a589215/wikihow-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-wikihow-com-api-40a6d3bd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Retrieve structured content from a wikiHow article including step-by-step instructions organized by topic, ingredients, tips, warnings, and categories. Provide either the URL-path title (e.g. 'Cook-Pasta') or the numeric page ID. Returns the full article body parsed into topics with steps, plus auxiliary sections (ingredients for recipes, tips, warnings).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `pageid` | string | No | The numeric page ID of the article. Optional if title is provided. |
| `title` | string | No | The article title as it appears in the URL path (e.g. 'Cook-Pasta'). Optional if pageid is provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wikihow-com-api-40a6d3bd/get_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pageid":"<string>","title":"<string>"}'
```

### get_random

Return a randomly selected wikiHow article's title, page ID, and URL. Each call yields a different article. Useful for discovery or sampling the wikiHow corpus.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wikihow-com-api-40a6d3bd/get_random \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search

Full-text search over wikiHow articles. Returns paginated results with article title, URL, view count, and last-updated timestamp. Pagination uses an integer offset; the response includes next_offset for the subsequent page. Categories may appear alongside articles in results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. |
| `offset` | integer | No | Offset for pagination (number of results to skip). |
| `query` | string | Yes | The search term. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wikihow-com-api-40a6d3bd/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>"}'
```
