Using Blueprints

Finding Blueprints

When searching for journeys you can apply a filter to only look for results of the type BlueprintJourney. This allows you to use any combination of origin and destination to see if there's a matching Blueprint available.

Origin and destination have to match

Only an exact match of origin and destination will yield a BlueprintJourney result.

Example: Get all Blueprints from Copenhagen to Prague
graphql
query BlueprintJourneys {
  journeys(
    origin: { uid: "jOYDyOgW" }
    destination: { uid: "5BZEWWng" }
    date: "2026-10-06"
    filter: { type: [BLUEPRINT] }
  ) {
    id
    status
    itinerary {
      ... on SegmentCollection {
        segments {
          departureAt
          identifier
        }
      }
    }
  }
}
query BlueprintJourneys {
  journeys(
    origin: { uid: "jOYDyOgW" }
    destination: { uid: "5BZEWWng" }
    date: "2026-10-06"
    filter: { type: [BLUEPRINT] }
  ) {
    id
    status
    itinerary {
      ... on SegmentCollection {
        segments {
          departureAt
          identifier
        }
      }
    }
  }
}

Get Specific Blueprint

If you know beforehand the exact Blueprint you are looking for, you can get it directly by its id using getJourneyForBlueprint.

Example: Get Blueprint by id
graphql
query GetBlueprintJourney {
  getJourneyForBlueprint(
    blueprint: "84c92666-16d1-4957-8af8-86d8bfbd76ee"
    date: "2026-10-06"
  ) {
    id
    status
    itinerary {
      ... on SegmentCollection {
        segments {
          departureAt
          identifier
        }
      }
    }
  }
}
query GetBlueprintJourney {
  getJourneyForBlueprint(
    blueprint: "4c96e30c-7998-438e-ae53-6804de89de73"
    date: "2026-10-06"
  ) {
    id
    status
    itinerary {
      ... on SegmentCollection {
        segments {
          departureAt
          identifier
        }
      }
    }
  }
}