# HungerStation — 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.

> Browse restaurants across Saudi Arabian cities on HungerStation and discover detailed information about each restaurant including their complete menus. Find exactly what you're looking for by searching through available cities and viewing all restaurant offerings in your area.

**Category:** Food & Dining | **Website:** [hungerstation.com/](https://hungerstation.com/) | **Docs:** [parse.bot/marketplace/b92910ea-c12b-4cf9-91f6-d1e64a86305a/hungerstation-com-api](https://parse.bot/marketplace/b92910ea-c12b-4cf9-91f6-d1e64a86305a/hungerstation-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-hungerstation-com-api-b92910ea/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_cities

Returns all cities served by HungerStation in Saudi Arabia. Each city includes its display name, URL slug for use with other endpoints, and the number of available restaurant pages (districts). The restaurant_count field represents the number of paginated result pages available for that city via get_restaurants_by_city.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hungerstation-com-api-b92910ea/get_cities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_restaurants_by_city

Returns up to 50 restaurants for a given city page with full details including name, logo, cuisine type, rating, location, status, and complete menu items with prices and descriptions. Each page corresponds to one district within the city. Results are paginated by district; use num_pages from the response to determine total available pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city_slug` | string | Yes | URL slug identifying the city (e.g. 'riyadh', 'jeddah', 'dammam'). Obtain from get_cities endpoint's city_slug field. |
| `page` | integer | No | Page number (1-indexed). Each page corresponds to one district within the city, containing up to 50 restaurants with full details. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hungerstation-com-api-b92910ea/get_restaurants_by_city \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city_slug":"<string>","page":"<integer>"}'
```
