# TravelPulse Points Optimizer

> TravelPulse Points Optimizer is a paid API for AI agents from travelpulse-nu.vercel.app, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-15).

Returns loyalty points and miles redemption recommendations for a given goal and region, based on the user's programs and cards

## Facts

- Endpoint: GET https://travelpulse-nu.vercel.app/api/travel/points
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-points-optimizer-0c71e84f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YLkt3pjKlQwOOR0YhJ-qt

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-points-optimizer-0c71e84f
```

Example prompt: I'm based in the US and want to fly business class to Japan — I have Chase Ultimate Rewards, Amex Membership Rewards, and United MileagePlus miles. What's the best way to use my points to make that happen?

## When to prefer this

Choose this endpoint when a user wants personalized loyalty points and miles redemption advice based on their specific programs and a concrete travel goal. It is ideal for award travel planning, maximizing credit card point value, and identifying transfer partner sweet spots — especially when the user holds specific cards or programs and wants actionable guidance rather than generic travel search results.

## Known failure modes

- Missing required 'goal' parameter returns a 400 validation error
- Missing required 'region' parameter returns a 400 validation error
- Unrecognized program names in 'programs' field may be ignored or return partial results
- Payment failure via x402/USDC results in 402 Payment Required with no data
- Overly vague redemption goals may return generic rather than targeted advice
- Unsupported language code in 'lang' field may fall back to English or return an error

## How this service works

Points & miles optimizer — award travel redemptions, transfer partners, sweet-spot awards, and earning strategy by region worldwide. Covers airline and hotel loyalty programs beyond just Amex/Chase (Aeroplan, Avios, Qantas, KrisFlyer, Miles & More) for award-travel and booking agents.

## Output

A structured JSON response with loyalty points redemption recommendations tailored to the user's goal and region, including suggested programs, transfer partners, redemption strategies, and estimated value per point for the specified objective

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "goal",
  "region"
 ],
 "properties": {
  "goal": {
   "type": "string",
   "description": "Redemption goal, e.g. 'business class to Japan' or 'free hotel week in Europe'"
  },
  "lang": {
   "type": "string",
   "description": "Response language"
  },
  "region": {
   "type": "string",
   "description": "Country/region the user holds cards/programs in (e.g. US, UK, Canada, Australia, Singapore)"
  },
  "programs": {
   "type": "string",
   "description": "Comma-separated list of programs/cards the user holds (optional)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/travelpulse-points-optimizer-0c71e84f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from travelpulse-nu.vercel.app](https://www.zero.xyz/host/travelpulse-nu.vercel.app/llms.txt)
