# Apnews — 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 for news articles from Associated Press on any topic and retrieve complete article details including headlines, summaries, and content with easy pagination. Stay informed with current news stories by finding and reading articles on subjects that matter to you.

**Category:** News & Media | **Website:** [apnews.com/hub/latin-america](https://apnews.com/hub/latin-america) | **Docs:** [parse.bot/marketplace/5206e7f8-71e7-4bb2-8a30-5e674b67d176/apnews-com-api](https://parse.bot/marketplace/5206e7f8-71e7-4bb2-8a30-5e674b67d176/apnews-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-apnews-com-api-5206e7f8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Retrieve the full content of an AP News article given its URL. Returns title, authors, publication and update dates, description, keywords, image URL, and full article body text. The article_url comes from search_articles results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_url` | string | Yes | Full AP News article URL (e.g. from search_articles results[*].url). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-apnews-com-api-5206e7f8/get_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"article_url":"<string>"}'
```

### search_articles

Search AP News articles by keyword query. Returns up to 30 results per page with title, URL, description, and publication dates. Paginate with the page parameter; has_next_page indicates whether more results are available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | Yes | Search query text (e.g. 'brazil', 'climate change'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-apnews-com-api-5206e7f8/search_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
