# Nytimes — 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 the latest news articles from The New York Times organized by topic sections like politics, business, technology, and more. Stay informed with current stories from one of the world's leading news sources without manually browsing their website.

**Category:** News & Media | **Website:** [www.nytimes.com/](https://www.nytimes.com/) | **Docs:** [parse.bot/marketplace/46e3950d-b445-427d-b952-308bf9bac68f/nytimes-com-api](https://parse.bot/marketplace/46e3950d-b445-427d-b952-308bf9bac68f/nytimes-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-nytimes-com-api-46e3950d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_section_articles

Fetches recent articles from a given NYT section. Returns a list of articles with title, URL, summary, publication date, kicker label, authors, and thumbnail image URL. Sections include world, us, business, technology, science, health, arts, sports, opinion, and others matching the nytimes.com/section/ navigation.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `section` | string | No | NYT section slug (e.g. world, us, business, technology, science, health, arts, sports, opinion). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nytimes-com-api-46e3950d/get_section_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"section":"<string>"}'
```
