# 12Go Asia — 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.

> Search for train trips across Asia and instantly get available routes with schedules, operators, prices by cabin class, and direct booking links. Plan your rail journey with comprehensive trip options and real-time pricing information all in one place.

**Category:** Travel | **Website:** [12go.asia/en/train/tashkent-central/samarkand?date=2026-07-21](https://12go.asia/en/train/tashkent-central/samarkand?date=2026-07-21) | **Docs:** [parse.bot/marketplace/152384dc-311a-47da-90fc-30b0e864b5d6/12go-asia-api](https://parse.bot/marketplace/152384dc-311a-47da-90fc-30b0e864b5d6/12go-asia-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-12go-asia-api-152384dc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_trains

Search train routes between two stations on a given date. Returns all available trains with departure/arrival times, operator and train number, prices per cabin class, seat availability, and a booking link. Results are a single-page list of all trains for that date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | Yes | Travel date in ISO format YYYY-MM-DD. |
| `destination` | string | Yes | Destination station or city slug as used in the 12go.asia URL path (e.g. 'samarkand', 'chiang-mai', 'ho-chi-minh'). |
| `origin` | string | Yes | Origin station or city slug as used in the 12go.asia URL path (e.g. 'tashkent-central', 'bangkok', 'hanoi'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-12go-asia-api-152384dc/search_trains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","destination":"<string>","origin":"<string>"}'
```
