# TravelPulse Trip Check — Pre-Booking Clearance

> TravelPulse Trip Check — Pre-Booking Clearance is a paid API for AI agents from travelpulse.theaslangroupllc.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-13).

Runs a single-call pre-booking trip clearance check covering visa/entry, health/vaccines, safety, weather, and currency — returning clear/caution/blocker status per dimension plus an overall go/no-go verdict and documents checklist.

## Facts

- Endpoint: GET https://travelpulse.theaslangroupllc.com/api/travel/trip-check
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-trip-check-pre-booking-clearance-c388bfa7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__U2YKxUt4dAIeltVBXtQM

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 travelpulse-trip-check-pre-booking-clearance-c388bfa7
```

Example prompt: Before I book this trip, can you run a full pre-booking clearance check for a US passport holder flying from New York to Thailand from March 10 to March 24 — I need to know about visa requirements, any vaccines I need, current safety advisories, whether the weather window looks good, and what documents I should bring?

## When to prefer this

Use this endpoint when a booking agent or AI assistant needs a single-call, multi-dimensional pre-booking clearance — combining visa, health, safety, weather, and currency signals — rather than making five separate specialist API calls. Ideal for consumer travel apps, AI travel agents, or itinerary tools that want one consolidated go/no-go verdict before committing to a booking.

## Known failure modes

- Unknown or unsupported destination country returns an error or degraded response
- Missing traveler nationality prevents accurate visa assessment
- Ambiguous travel dates may result in incomplete weather window analysis
- Edge-case destinations with limited data may return partial results for some dimensions
- Network timeout or upstream data source unavailability may cause a 500-level error

## How this service works

One-call pre-booking trip clearance for booking agents: visa/entry, vaccines/health, safety advisory, weather window, and money — each with clear/caution/blocker status plus one overall verdict and a documents checklist.

## Output

Returns a structured report with five dimensions — visa/entry, health/vaccines, safety advisory, weather window, and money/currency — each labeled clear, caution, or blocker; an overall go/no-go verdict; and a checklist of required travel documents.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "passport",
  "destination"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language"
  },
  "dates": {
   "type": "string",
   "description": "Travel window, free-form (e.g. 2026-09-10 to 2026-09-20)"
  },
  "passport": {
   "type": "string",
   "description": "Passport nationality (e.g. US, UK, India, Brazil, Nigeria)"
  },
  "destination": {
   "type": "string",
   "description": "Destination country or city (e.g. Japan, Paris, Kenya)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/travelpulse-trip-check-pre-booking-clearance-c388bfa7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from travelpulse.theaslangroupllc.com](https://www.zero.xyz/host/travelpulse.theaslangroupllc.com/llms.txt)
