# Sunway Logistics — 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 comprehensive Sunway Logistics service information including complete service listings and detailed descriptions of individual offerings to compare and select the right shipping solutions for your needs. Find specific service details like rates, coverage areas, and delivery options all in one place.

**Category:** Business Directories | **Website:** [http://sunway-logistics.com/ch/index.php?controller=service&action=index](http://sunway-logistics.com/ch/index.php?controller=service&action=index) | **Docs:** [parse.bot/marketplace/efb40891-6bb0-40e5-85ad-6d9b8a61d758/sunway-logistics-com-api](https://parse.bot/marketplace/efb40891-6bb0-40e5-85ad-6d9b8a61d758/sunway-logistics-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-sunway-logistics-com-api-efb40891/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_service_detail

Retrieves the full content of a single service page given its detail URL (as returned by get_services_list). Returns the page title, text content, images list, and any links found in the content area.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the service detail page, e.g. from get_services_list results' detail_url field. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sunway-logistics-com-api-efb40891/get_service_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_services_list

Retrieves all service items from the services index page. Returns an array of services with name, description, image URL, and detail link. No pagination — the full list is returned in a single call.

**Estimated cost:** Metered

_No parameters required._

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