Skip to main content
Jinko is a travel discovery platform that turns a budget and a set of departure airports into ranked destination ideas. It searches live fares across routes and surfaces the places you can actually reach, with example itineraries and prices for each one.

Use it for

  • Finding destinations reachable from a city within a target budget.
  • Planning flexible trips across date windows, cabin classes, and party sizes.
  • Comparing fares to a shortlist of candidate destinations.

Provider ID

Use this value in dataSources:
jinko

Example

Find beach destinations reachable from New York for under $400 round-trip in March.
from exa_py import Exa

exa = Exa()
run = exa.agent.runs.create(
    query="Find beach destinations reachable from New York for under $400 round-trip in March.",
    data_sources=[{"provider": "jinko"}],
    output_schema={
        "type": "object",
        "required": ["destinations"],
        "properties": {
            "destinations": {
                "type": "array",
                "maxItems": 10,
                "items": {
                    "type": "object",
                    "required": ["city", "iataCode", "lowestFare"],
                    "properties": {
                        "city": {"type": "string"},
                        "iataCode": {"type": "string"},
                        "lowestFare": {"type": "number", "description": "round-trip fare in USD"},
                    },
                },
            }
        },
    },
)
run = exa.agent.runs.poll_until_finished(run.id)

Pairs well with

  • Similarweb: research the travel sites and booking platforms behind a destination.
  • Particle: pull recent coverage and travel commentary for a place.