# Amadeus Activity Details by ID

> Amadeus Activity Details by ID 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).

Retrieves full details for a specific travel activity using its unique activity ID via the Amadeus API.

## Facts

- Endpoint: GET https://stabletravel.dev/api/activities/details
- 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-6226acd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zal53ppnXY11mKSB7C6Mw

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-6226acd1
```

Example prompt: Can you pull up the full details for the Amadeus activity with ID '23214569' — I want to see everything about it like description, duration, pricing, and location?

## When to prefer this

Use this endpoint when you already have a specific Amadeus activity ID and need to fetch its complete details, such as after a search or listing operation that returned activity IDs. It is not suitable for discovery or searching — use a search endpoint first to find IDs.

## Known failure modes

- Missing or invalid activityId returns an error or empty result
- Activity ID not found returns a 404 or empty data response
- Payment failure (x402) if USDC balance is insufficient
- Network timeout or service unavailability from stabletravel.dev or upstream Amadeus API

## How this service works

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

## Output

Returns a data object containing full details of the requested activity, including description, pricing, location, duration, and other metadata as provided by the Amadeus activities API.

## 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": [
      "activityId"
     ],
     "properties": {
      "activityId": {
       "type": "string",
       "description": "Activity ID"
      }
     },
     "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": {},
      "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."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amadeus-6226acd1/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)
