# Wikipedia (English) — 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 structured information about awards, honors, and achievements mentioned in Wikipedia articles to build databases of accolades or compare accomplishments across notable people and organizations. Access organized award data including names, dates, and categories directly from Wikipedia's comprehensive biographical and organizational content.

**Category:** Other | **Website:** [en.wikipedia.org/wiki/Jeremiah_Smith_(wide_receiver)](https://en.wikipedia.org/wiki/Jeremiah_Smith_(wide_receiver)) | **Docs:** [parse.bot/marketplace/97616a9f-84c9-408e-803c-2233abe5a959/en-wikipedia-org-api](https://parse.bot/marketplace/97616a9f-84c9-408e-803c-2233abe5a959/en-wikipedia-org-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-en-wikipedia-org-api-97616a9f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_awards

Extract the awards, honors, and achievements from a Wikipedia article. Parses the article's wikitext to find awards listed in the infobox, a dedicated Awards/Honors section, or standalone bullet lists. Returns a structured list of awards with their associated year(s). Works best with biographical articles for athletes, entertainers, and public figures that list accomplishments.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_title` | string | Yes | Wikipedia article title as it appears in the URL path (e.g. 'Jeremiah_Smith_(American_football)', 'Tom_Brady'). Spaces can be underscores or literal spaces. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-en-wikipedia-org-api-97616a9f/get_awards \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"article_title":"<string>"}'
```
