# StayAPI Transport Endpoint

> StayAPI Transport Endpoint is a paid API for AI agents from stay402.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Retrieves transport or logistics details for a specific hotel by hotel ID

## Facts

- Endpoint: POST https://stay402.vercel.app/api/transport
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stayapi-transport-endpoint-69dce6ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0zPR5DzMPL1Xwf_07ou8M

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stayapi-transport-endpoint-69dce6ec -d '<json body>'
```

Example prompt: Pull up the transport details for hotel ID 'htl_abc123' — I need to know how to get there.

## When to prefer this

Use this endpoint when you have a specific hotel ID and need to retrieve transport or logistics data for that property without requiring API key authentication — ideal for AI agents that pay per request in USDC via x402 and need frictionless accommodation-related data access.

## Known failure modes

- Missing or invalid hotel ID returns an error or empty data object
- Unknown hotel ID returns success:false or empty data
- Payment failure via x402 protocol returns 402 Payment Required before data is delivered
- Network timeout if hotel data is unavailable
- Malformed request body returns validation error

## How this service works

Accommodation search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a success flag and a data object containing transport-related details for the specified hotel, such as nearby transit options, distance from landmarks, or logistics connectivity information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Hotel ID"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "data"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stayapi-transport-endpoint-69dce6ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stay402.vercel.app](https://www.zero.xyz/host/stay402.vercel.app/llms.txt)
