# Amadeus Tours & Activities Search by Coordinates

> Amadeus Tours & Activities Search by Coordinates is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-14).

Search for tours and activities near a geographic location using latitude/longitude coordinates via the Amadeus API.

## Facts

- Endpoint: GET https://stabletravel.dev/api/activities/search
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amadeus-af493c0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wfe_T1jNxTvSyVk-ONnb_

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 amadeus-af493c0f
```

Example prompt: Can you find me tours and activities within 5 km of the Eiffel Tower — the coordinates are latitude 48.8584 and longitude 2.2945? Show me up to 20 results.

## When to prefer this

Use this endpoint when you need to discover tours, activities, and local experiences near a specific geographic point. Prefer this over hotel or flight endpoints when the user's intent is to explore things to do in a destination. Best when you have GPS coordinates or can geocode a location name to lat/lng first.

## Known failure modes

- Missing required latitude or longitude returns a validation error
- Invalid coordinate values (out of range) may return empty results or an error
- No activities found in area returns an empty data array
- Payment failure (x402) if USDC payment is not completed
- Radius too small for sparse areas may return zero results
- Max value outside allowed range may be rejected

## How this service works

Pay-per-request access to flights, award availability, hotels, activities, and transfers. No auth, no subscriptions.

## Output

An array of tour and activity listings near the given coordinates, including names, descriptions, and relevant metadata for each activity found within the specified radius.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "latitude",
      "longitude"
     ],
     "properties": {
      "max": {
       "type": "number",
       "description": "Maximum number of results (default 50)"
      },
      "radius": {
       "type": "number",
       "description": "Search radius in km (default 1)"
      },
      "latitude": {
       "type": "number",
       "description": "Latitude coordinate"
      },
      "longitude": {
       "type": "number",
       "description": "Longitude coordinate"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "data"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {}
      },
      "meta": {}
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "3216",
    "name": "Sagrada Familia Skip-the-Line Guided Tour",
    "type": "activity",
    "price": {
     "amount": "45.00",
     "currencyCode": "EUR"
    },
    "geoCode": {
     "latitude": 41.4036,
     "longitude": 2.1744
    },
    "pictures": [
     "https://example.com/activity-3216.jpg"
    ],
    "bookingLink": "https://example.com/book/3216",
    "minimumDuration": "2 hours",
    "shortDescription": "Visit one of Barcelona's most famous attractions with priority access."
   }
  ],
  "meta": {
   "count": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amadeus-af493c0f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stabletravel.dev](https://www.zero.xyz/host/stabletravel.dev/llms.txt)
