# CryptoIntel Travel Goal-to-Plan Engine

> CryptoIntel Travel Goal-to-Plan Engine is a paid API for AI agents from cryptointel-production.up.railway.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Parses a natural language travel objective, finds matching eSIM products with live pricing from Bitrefill, and returns a recommendation with estimated budget

## Facts

- Endpoint: GET https://cryptointel-production.up.railway.app/fulfill-goal
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptointel-travel-goal-to-plan-engine-20726f1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GwA7nzF1cnykEXNRPAqDL

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 cryptointel-travel-goal-to-plan-engine-20726f1c
```

Example prompt: I'm planning a trip to Japan for 15 days — can you find me a good eSIM plan with live pricing and tell me what it'll cost?

## When to prefer this

Use this endpoint when a user has expressed a natural language travel goal and needs an eSIM product recommendation with live pricing. Ideal for trip-planning agents that need to quickly surface mobile data options for international travelers. Prefer over generic eSIM search when the input is free-form natural language describing a destination and duration.

## Known failure modes

- Unsupported goal type (non-travel/eSIM objective) — returns error indicating V0 scope is limited to travel/eSIM goals
- Destination not covered by available eSIM products — returns no matching products
- Bitrefill pricing unavailable or stale — may return degraded or cached pricing data
- Missing or malformed 'objective' query parameter — returns validation error
- Payment not completed (x402) — returns 402 Payment Required before processing

## How this service works

V0 — Goal-to-plan engine for travel abroad. Parses an objective like "trip to Japan 15 days", finds matching eSIM products with real live pricing from Bitrefill, returns a recommendation + estimated budget. Scope limited to travel/eSIM goals in V0.

## Output

Returns a recommended eSIM product sourced from Bitrefill with real-time pricing, along with an estimated budget for mobile data coverage matching the specified travel destination and duration.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "objective"
     ],
     "properties": {
      "objective": {
       "type": "string",
       "description": "Natural language goal, e.g. \"trip to Japan for 15 days\". V0 only supports travel/eSIM goals."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      },
      "fee_paid": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptointel-travel-goal-to-plan-engine-20726f1c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptointel-production.up.railway.app](https://www.zero.xyz/host/cryptointel-production.up.railway.app/llms.txt)
