# StayAPI Transport Endpoint

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

Retrieves transportation or transit details for a given hotel ID via pay-per-request USDC payment

## Facts

- Endpoint: POST https://stayapi-jet.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-7ff44b1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__dqwfU0hGEWlWsYH2F30V

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-7ff44b1f -d '<json body>'
```

Example prompt: Look up the transport options for hotel ID 'HTL-20394' — I want to know how to get there from the city center.

## When to prefer this

Use this endpoint when you have a specific hotel ID and need to retrieve transport-related information for that property, especially in an agent context where no API key or subscription is available and per-request USDC micropayment via x402 is acceptable.

## Known failure modes

- Missing or invalid hotel ID returns an error or empty data object
- Unknown hotel ID returns no transport data
- Payment failure via x402 results in a 402 response and no data returned
- Malformed request body causes a 400-level error
- Service unavailable on Vercel hosting returns 5xx error

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing transport details associated with the specified hotel ID, such as nearby transit options, directions, or transport availability.

## 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-7ff44b1f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stayapi-jet.vercel.app](https://www.zero.xyz/host/stayapi-jet.vercel.app/llms.txt)
