travelpayouts_price_calendar

Pack: travelpayouts · Endpoint: https://gateway.pipeworx.io/travelpayouts/mcp

Get the cheapest ticket price for each day of a month for a route (a price calendar).

Parameters

NameTypeRequiredDescription
originstringyesDeparture IATA city/airport code, e.g. “MOW”
destinationstringyesArrival IATA city/airport code, e.g. “BCN”
depart_datestringyesMonth to build the calendar for, format YYYY-MM or YYYY-MM-DD
return_datestringnoReturn month/date, format YYYY-MM or YYYY-MM-DD (optional)
calendar_typestringnoWhich date to key the calendar by: “departure_date” (default) or “return_date”
currencystringnoPrice currency code, e.g. “usd” (default rub)
_apiKeystringyesTravelpayouts key as “token:marker” (marker optional)

Example call

Arguments

{
  "origin": "MOW",
  "destination": "BCN",
  "depart_date": "2026-08",
  "currency": "usd",
  "_apiKey": "token:your-travelpayouts-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/travelpayouts/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"travelpayouts_price_calendar","arguments":{"origin":"MOW","destination":"BCN","depart_date":"2026-08","currency":"usd","_apiKey":"token:your-travelpayouts-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('travelpayouts_price_calendar', {
  "origin": "MOW",
  "destination": "BCN",
  "depart_date": "2026-08",
  "currency": "usd",
  "_apiKey": "token:your-travelpayouts-api-key"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "travelpayouts": {
      "url": "https://gateway.pipeworx.io/travelpayouts/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026