Hospitalitynet APIhospitalitynet.org ↗
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.
curl -X GET 'https://api.parse.bot/scraper/eedbece5-ce28-493e-b5ed-99d1a1f35b27/get_article?article_url=https%3A%2F%2Fwww.hospitalitynet.org%2Fopinion%2F4133950%2F5-things-every-hotelier-should-know-about-pms-data-protection' \ -H 'X-API-Key: $PARSE_API_KEY'
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.
| Param | Type | Description |
|---|---|---|
| article_id | string | 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 | 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. |
{
"type": "object",
"fields": {
"title": "Article headline",
"content": "Full article body as HTML",
"summary": "Brief article summary as HTML",
"writers": "Array of author objects with name, position, and organization",
"category": "Article category name such as Technology, Development",
"article_type": "Article type such as opinion, pr, explainer, opening, pipeline, renovation",
"date_published": "ISO 8601 publication timestamp"
},
"sample": {
"data": {
"title": "5 Things Every Hotelier Should Know About PMS Data Protection",
"content": "<p>Most hotels have a disaster recovery plan...</p>",
"summary": "<p>Hoteliers are urged to treat PMS outages as operational crises, with practical guidance on backup validation, offsite redundancy, and recovery drills to minimize downtime.</p>",
"writers": [
{
"name": "Doug Wagner",
"position": "Manager, Technical Services",
"organization": "Maestro"
}
],
"category": "Technology",
"article_type": "opinion",
"date_published": "2026-08-13T14:31:13.000Z"
},
"status": "success"
}
}About the Hospitalitynet API
The Hospitalitynet API on Parse exposes 1 endpoint for the publicly available data on hospitalitynet.org. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.