# Hospitality Net — 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.

> Access the latest hospitality industry news and article details from Hospitality Net to stay informed about trends, insights, and developments in the hotel, restaurant, and tourism sectors. Get comprehensive article information including headlines, summaries, and industry updates all in one place.

**Category:** News & Media | **Website:** [www.hospitalitynet.org/](https://www.hospitalitynet.org/) | **Docs:** [parse.bot/marketplace/1ad358bc-3564-4cdb-b347-a6efb9c5efbf/hospitalitynet-org-api](https://parse.bot/marketplace/1ad358bc-3564-4cdb-b347-a6efb9c5efbf/hospitalitynet-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-hospitalitynet-org-api-1ad358bc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Get a single article's details including title, publication time, writer(s), and full content. Accepts either a full article URL or a numeric article ID. When using article_id alone, the endpoint resolves the correct article type path automatically (may require an extra redirect hop). Returns the article's HTML content, summary, category, and author information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_id` | string | No | Numeric article ID, e.g. 4133950. Either article_url or article_id must be provided. When only article_id is given, the endpoint auto-resolves the article type prefix. |
| `article_url` | string | No | Full Hospitality Net article URL, e.g. https://www.hospitalitynet.org/opinion/4133950/5-things-every-hotelier-should-know-about-pms-data-protection. Either article_url or article_id must be provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hospitalitynet-org-api-1ad358bc/get_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"article_id":"<string>","article_url":"<string>"}'
```
