.hero-cta:hover { background: var(--purple2); transform: translateY(-2px); box-shadow: 0 14px 32px var(--purple-glow); } .hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; } .trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--text2); } .trust-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; } /* TICKET VISUAL */ .ticket-wrap { position: relative; cursor: pointer; } .ticket-card { background: white; border-radius: 20px; padding: 2rem; box-shadow: 0 20px 60px rgba(124,58,237,0.15), 0 4px 20px rgba(0,0,0,0.05); position: relative; overflow: hidden; } [data-theme="dark"] .ticket-card { background: #1e1840; box-shadow: 0 20px 60px rgba(124,58,237,0.2); } .ticket-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; } .ticket-airline { font-size: 0.75rem; font-weight: 700; color: var(--purple); letter-spacing: 1px; text-transform: uppercase; } .ticket-pnr { font-size: 0.75rem; font-weight: 700; color: var(--text2); letter-spacing: 1px; } .ticket-route { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; } .ticket-city { flex: 1; } .ticket-iata { font-size: 2.5rem; font-weight: 900; color: var(--text); letter-spacing: -2px; line-height: 1; } .ticket-cityname { font-size: 0.75rem; color: var(--text2); font-weight: 600; margin-top: 0.2rem; } .ticket-arrow { flex: 1; text-align: center; } .ticket-arrow svg { width: 80px; height: 24px; } .ticket-divider { height: 1px; border: none; border-top: 2px dashed var(--border); margin: 1rem 0; } .ticket-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; } .ticket-meta-item { } .ticket-meta-label { font-size: 0.65rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.5px; } .ticket-meta-value { font-size: 0.9rem; font-weight: 700; color: var(--text); } .ticket-barcode { display: flex; gap: 2px; margin-top: 1rem; } .bar { background: var(--text); border-radius: 1px; } .ticket-floating-badge { display: inline-flex; align-items: center; gap: 0.35rem; position: absolute; top: -10px; right: -10px; background: #10b981; color: white; padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 800; box-shadow: 0 4px 12px rgba(16,185,129,0.3); z-index: 2; } /* STATS BAR */ .stats { background: var(--purple); padding: 1.5rem; } .stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; } .stat-num { font-size: 1.8rem; font-weight: 900; color: white; line-height: 1; } .stat-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 0.2rem; } /* SECTIONS */ .section { padding: 5rem 1.5rem; } .section-inner { max-width: 1280px; margin: 0 auto; } .section-tag { display: inline-block; color: var(--purple); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; } .section-h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; letter-spacing: -0.5px; color: var(--text); margin-bottom: 1rem; } .section-sub { color: var(--text2); font-size: 1rem; line-height: 1.7; max-width: 560px; } /* FORM SECTION */ .form-section { background: var(--bg2); padding: 5rem 1.5rem; } .form-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 24px; padding: 3rem; box-shadow: 0 4px 24px rgba(124,58,237,0.06); } .form-h2 { font-size: 1.8rem; font-weight: 900; color: var(--text); margin-bottom: 0.5rem; } .input-label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; } .inp { width: 100%; background: var(--bg); border: 2px solid var(--border); color: var(--text); padding: 0.9rem 1.1rem; border-radius: 12px; font-size: 1rem; font-family: inherit; transition: all 0.2s; outline: none; } .inp:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(124,58,237,0.08); } .inp::placeholder { color: var(--text2); } .submit-btn { width: 100%; background: var(--purple); color: white; border: none; padding: 1.1rem; border-radius: 14px; font-size: 1.1rem; font-weight: 800; cursor: pointer; font-family: inherit; box-shadow: 0 8px 24px var(--purple-glow); transition: all 0.2s; position: relative; overflow: hidden; } .submit-btn:hover { background: var(--purple2); transform: translateY(-2px); box-shadow: 0 14px 32px var(--purple-glow); } .submit-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s; } .submit-btn:hover::before { left: 100%; } .inner-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; } .radio-group { display: flex; gap: 1rem; } .radio-opt { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-weight: 600; color: var(--text); font-size: 0.95rem; } .pax-row { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--border); } .pax-row:last-child { border-bottom: none; } .pax-btn { width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all 0.2s; line-height: 1; } .pax-minus { background: var(--border); color: var(--text); } .pax-minus:hover { background: #d1d5db; } .pax-plus { background: var(--purple); color: white; } .pax-plus:hover { background: var(--purple2); } .search-results { max-height: 280px; overflow-y: auto; } .result-item { padding: 0.85rem 1rem; cursor: pointer; border-bottom: 1px solid var(--border); transition: all 0.15s; } .result-item:hover { background: var(--purple-light); } .result-item:last-child { border-bottom: none; } /* HOW IT WORKS */ .steps { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; } .step { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 18px; padding: 1.75rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.3s; position: relative; -webkit-tap-highlight-color: transparent; } .step:active { transform: scale(0.985); } .step.active { border-color: var(--purple); box-shadow: 0 4px 20px var(--purple-glow); } .step-left { flex: 1; } .step-num { font-size: 2rem; font-weight: 900; color: var(--purple); line-height: 1; margin-bottom: 0.25rem; } .step-title { font-size: 1.1rem; font-weight: 800; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; } .step-chevron { width: 20px; height: 20px; transition: transform 0.3s; color: var(--text2); flex-shrink: 0; } .step.active .step-chevron { transform: rotate(180deg); color: var(--purple); } .step-desc { color: var(--text2); font-size: 0.9rem; line-height: 1.6; margin-top: 0.75rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; } .step.active .step-desc { max-height: 300px; } .step-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; margin-left: 1.5rem; } .step-icon svg { stroke: var(--purple); } .step-icon-1 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); } .step-icon-2 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); } .step-icon-3 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); } [data-theme="dark"] .step-icon-1 { background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(139,92,246,0.15)); } [data-theme="dark"] .step-icon-2 { background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(244,114,182,0.15)); } [data-theme="dark"] .step-icon-3 { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(52,211,153,0.15)); } [data-theme="dark"] .step-icon-1 svg { stroke: #a78bfa; } [data-theme="dark"] .step-icon-2 svg { stroke: #f472b6; } [data-theme="dark"] .step-icon-3 svg { stroke: #34d399; } /* EMBASSY QUOTES */ .embassy-section { background: var(--bg2); padding: 5rem 1.5rem; } .embassy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; } .embassy-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 18px; padding: 1.75rem; display: flex; flex-direction: column; } .embassy-flag { display:block; width:48px; height:32px; border-radius:4px; box-shadow:0 2px 6px rgba(0,0,0,0.18); margin-bottom:1.1rem; object-fit:cover; flex-shrink:0; } .embassy-quote { color: var(--text2); font-size: 0.9rem; line-height: 1.7; margin: 0 0 1.25rem 0; padding: 0; border: none; font-style: italic; flex: 1; } .embassy-quote p { margin: 0; } .embassy-source { display: flex; align-items: center; font-size: 0.78rem; font-weight: 700; color: var(--purple); font-style: normal; margin-top: auto; } .embassy-source a { color: var(--purple); text-decoration: none; border-bottom: 1px solid rgba(124,58,237,0.3); transition: border-color 0.2s; } .embassy-source a:hover { border-bottom-color: var(--purple); } /* BENEFITS */ .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; } .benefit-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 18px; padding: 1.75rem; transition: all 0.3s; } .benefit-card:hover { border-color: var(--purple); transform: translateY(-4px); box-shadow: 0 12px 32px var(--purple-glow); } .benefit-title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; } .benefit-desc { color: var(--text2); font-size: 0.9rem; line-height: 1.6; } /* COUNTRIES GRID */ .countries-section { padding: 5rem 1.5rem; background: var(--bg2); } .countries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem; margin-top: 2rem; } .country-chip { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; padding: 0.6rem 0.75rem; text-align: center; text-decoration: none; transition: all 0.2s; } .country-chip:hover { border-color: var(--purple); background: var(--purple-light); } .country-chip-name { font-size: 0.75rem; font-weight: 700; color: var(--text); display: block; } .country-chip-type { font-size: 0.6rem; color: var(--text2); display: block; margin-top: 0.1rem; } /* FAQ */ .faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; } .faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; } .faq-item:hover { border-color: var(--purple); } .faq-q:focus-visible { outline: 2px solid var(--purple); outline-offset: -2px; border-radius: 14px; } .faq-q:focus { outline: none; } .faq-q { padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 700; font-size: 1rem; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 1rem; } .faq-q-icon { width: 28px; height: 28px; background: var(--purple-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--purple); flex-shrink: 0; transition: transform 0.3s; } .faq-item.open .faq-q-icon { transform: rotate(45deg); } .faq-a { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; color: var(--text2); font-size: 0.95rem; line-height: 1.7; } .faq-item.open .faq-a { max-height: 600px; padding-bottom: 1.25rem; } /* SEO TEXT */ .seo-section { padding: 4rem 1.5rem; } .seo-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; } /* FOOTER */ footer { background: #0c0818; color: #94a3b8; padding: 4rem 1.5rem 2rem; } .footer-inner { max-width: 1280px; margin: 0 auto; } .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #1e1640; } .footer-brand { font-size: 1.4rem; font-weight: 900; color: #a78bfa; margin-bottom: 0.75rem; } .footer-tagline { font-size: 0.85rem; line-height: 1.6; } .footer-col-title { font-size: 0.8rem; font-weight: 800; color: #e2e8f0; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; } .footer-links { display: flex; flex-direction: column; gap: 0.5rem; } .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; } .footer-links a:hover { color: #a78bfa; } .footer-bottom { padding-top: 2rem; text-align: center; font-size: 0.8rem; } /* MOBILE */ @media (max-width: 1024px) { .countries-grid { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 768px) { body { padding-top: 0; } .nav { height: 64px; } .nav-links .nav-link:not(:last-child) { display: none; } .hero-inner { grid-template-columns: 1fr; gap: 2rem; } .ticket-wrap { order: -1; } .hero-h1 { font-size: 2.2rem; } .stats-inner { grid-template-columns: repeat(2, 1fr); } .embassy-grid { grid-template-columns: 1fr; } .benefits-grid { grid-template-columns: 1fr; } .countries-grid { grid-template-columns: repeat(3, 1fr); } .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } .form-card { padding: 1.5rem; } .section { padding: 3rem 1rem; } .inp { font-size: 16px; } .submit-btn { padding: 1rem; font-size: 1rem; } /* FIX 1: Tab Pills - equal height and size on mobile */ .form-section [style*="inline-flex"] { width: 100%; } .form-section [style*="inline-flex"] button { flex: 1; justify-content: center; padding: 0.65rem 0.75rem !important; font-size: 0.8rem !important; white-space: nowrap; } /* FIX 2: Why MyJet24 - stack vertically on mobile */ .benefits-top { grid-template-columns: 1fr !important; gap: 2rem !important; } .benefits-top > div:first-child { text-align: center; } .benefits-top .section-sub { margin: 0 auto; } /* FIX 4: Form grids - stack vertically on mobile */ .form-card div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; } /* FIX 5: Free vs Premium cards - keep side by side on mobile, just shrink text */ .plan-compare { gap: 0.5rem !important; } .plan-compare > div { padding: 0.75rem !important; font-size: 0.85em; } /* FIX 3: Simple Process / 3 Easy Steps - stack vertically on mobile */ .how-grid { grid-template-columns: 1fr !important; gap: 2rem !important; } .how-grid > div:first-child { text-align: center; } .how-grid .section-sub { margin: 0 auto; } /* FIX 6: Step cards - smaller padding, icons, font on mobile */ .step { padding: 1.15rem 1.25rem; border-radius: 14px; } .step-icon { width: 46px; height: 46px; border-radius: 12px; margin-left: 0.75rem; } .step-icon svg { width: 20px; height: 20px; } .step-num { font-size: 1.5rem; } .step-title { font-size: 0.95rem; } .step-desc { font-size: 0.82rem; } } @media (max-width: 480px) { .countries-grid { grid-template-columns: repeat(2, 1fr); } .footer-top { grid-template-columns: 1fr; } .hero-h1 { font-size: 1.85rem; } .stat-num { font-size: 1.4rem; } .radio-group { flex-direction: column; gap: 0.5rem; } }
100% חינמי · ללא כרטיס אשראי

כרטיס מדומה חינמי
לבקשות ויזה

צרו קובץ PDF מקצועי של מסלול טיסה תוך 30 שניות. עם מספר אישור הזמנה, קוד QR ופורמט חברת תעופה — מקובל ב-195+ מדינות, שגרירויות ורשויות הגירה ברחבי העולם.

צרו כרטיס חינמי עכשיו
הורדת PDF מיידית
קוד QR אמיתי כלול
אין צורך בחשבון
195+ מדינות
MyJet24 - Free Dummy Ticket Generator for Visa Applications
100%
חינמי לנצח
30s
זמן יצירה
195+
מדינות מכוסות
6,000+
שדות תעופה ברחבי העולם

צור כרטיס מדומה חינמי

מלאו את הפרטים והורידו את ה-PDF באופן מיידי

חינם
$0 לנצח
הורדה מיידית של PDF
קוד QR & הפניה להזמנה
6,000+ שדות תעופה
עד 6 נוסעים
מיתוג MyJet24
מוכר על ידי שגרירויות ברחבי העולם
פרימיום
הכי מציאותי
$4.90 חד פעמי
הכל בחינם
שם ולוגו של חברת תעופה אמיתית
זמני טיסה מאומתים
אישור בדוא"ל
ללא מיתוג · PDF נקי
3x זול יותר מהמתחרים ($14-16)
מבוגרים
12+ שנים
1
ילדים
2–11 שנים
0
תינוקות
<2 שנים
0
סה"כ: 1 / 6 נוסעים

פרטי נוסעים

פרטי קשר

ללא סימן מים · תשלום מאובטח ב-Stripe
או

קבל כרטיס מדומה ב-3 שלבים

הדרך המהירה ביותר לקבל הוכחת נסיעה חזרה לבקשת הויזה שלך.

01
הזינו את מסלול הטיסה שלכם
בחרו שדות תעופה ממאגר הנתונים שלנו עם 6,000+ שדות תעופה ברחבי העולם. קבעו תאריכי נסיעה — כיוון אחד או הלוך ושוב. הוסיפו עד 6 נוסעים.

מה זה כרטיס מדומה לבקשות ויזה?

כרטיס מדומה — המכונה גם כרטיס טיסה מדומה, מסלול טיסה, הזמנת טיסה או הוכחת נסיעה המשך — הוא הזמנת טיסה זמנית המשמשת להצגת תוכניות נסיעה מבלי לרכוש כרטיס מאושר. הוא מקובל על ידי שגרירויות, קונסוליות ופקידי הגירה ברחבי העולם.

רוב השגרירויות — כולל מדינות שנגן, בריטניה, ארה"ב, קנדה והודו — מצהירות רשמית שמגישים לא צריכים לרכוש כרטיסים מאושרים לפני אישור הויזה. מסלול טיסה מ-MyJet24 עונה על כל דרישות התיעוד.

הכרטיס המדומה החינמי שלנו כולל מספר הזמנה ייחודי (PNR), פרטי נוסע, מספרי טיסה, תאריכים וקוד QR — כל מה שהשגרירויות צריכות כדי לאשר את תוכניות הנסיעה שלכם.

MyJet24 מייצר את המסלול שלכם תוך שימוש במסלולי חברות תעופה אמיתיים, קודי שדות תעופה IATA ופורמטים אותנטיים של מספרי טיסה כדי להבטיח שהמסמך שלכם ייראה מקצועי ויעמוד בסטנדרטים של השגרירויות.

שגרירויות ממליצות: אל תקנה כרטיסים לפני הויזה

רוב השגרירויות ממליצות רשמית לא לקנות כרטיסים מאושרים לפני אישור הויזה — מסלול טיסה מספיק.

דגל נורווגיה

"הזמנה מאושרת של כרטיס טיסה הלוך ושוב עם תאריכי נסיעה קבועים של עד 90 יום. אל תרכשו את הכרטיס עד שהויזה תינתן."

שגרירות נורבגיה ↗
דגל ספרד

"הזמנת כרטיס טיסה דו-כיווני מקובלת. מומלץ מאוד לא לרכוש כרטיס טיסה לפני קבלת הויזה."

שגרירות ספרד ↗
דגל הודו

"מגישים לא צריכים לרכוש כרטיסי טיסה לפני קבלת הויזה. הזמנת טיסה או מסלול מקובלים לבקשות ויזה."

שגרירות הודו ↗

קרא את מדריך כרטיסי הדמה המלא שלנו — איך שגרירויות מאמתות מסמכים

הדרך החכמה לטפל בבקשות ויזה

חסכו כסף, הישארו גמישים, והגישו בקשת ויזה בביטחון — הכל בחינם. בין אם אתם תיירים המגישים בקשה לויזת שנגן, נוודים דיגיטליים הנוסעים לתאילנד, סטודנטים המתכוננים לויזת לימודים בחו"ל, או מטיילי עסקים הזקוקים להוכחת המשך נסיעה — MyJet24 מכסה אתכם.

צרו כרטיס חינמי →
חסכו מאות דולרים
אל תרכשו טיסה ב-$300+ לפני אישור הויזה שלכם. השתמשו במקום זאת בכרטיס מדומה חינמי.
הישארו גמישים
שנו את תוכניותיכם בחופשיות מבלי לאבד כסף על כרטיסים שאינם ניתנים להחזר.
מקובל ברחבי העולם
מסלולי כרטיס המשך נסיעה מקובלים על ידי שגרירויות, פקידי הגירה ומלונות ברחבי העולם.
PDF מיידי תוך 30 שניות
PDF מקצועי עם מספר הזמנה, קוד QR ופורמט חברת תעופה. מוכן באופן מיידי.
אמינות עולמית

מהימן על ידי נוסעים מכל העולם

הצטרפו ל-50,000+ נוסעים שקיבלו את הוויזה שלהם עם MyJet24

50,000+
נוסעים שהתקבלו
195+
מדינות מכוסות
4.8/5
דירוג ממוצע
30 שניות
זמן אספקה ממוצע

חיפושים פופולריים

שאלות נפוצות

מהו כרטיס דמי והאם הוא חוקי?
+
כרטיס דמי (או כרטיס טיסה דמי) הוא הזמנה זמנית לטיסה המשמשת לבקשות ויזה, הוכחת נסיעה קדימה, והזמנת מלון. זה חוקי ומתקבל באופן נרחב על ידי שגרירויות ב-195+ מדינות — למעשה, רוב השגרירויות ממליצות במפורש למבקש לא לרכוש כרטיסים מאושרים לפני אישור הוויזה. זה לא כרטיס מזויף אלא מסמך הזמנה מקצועי.
האם אני יכול להשתמש בכרטיס דמי לבקשת הוויזה שלי?
+
כן. כרטיסים דמי מיועדים במיוחד לבקשות ויזה. רוב השגרירויות — שנגן, בריטניה, ארה"ב, קנדה, אוסטרליה, הודו ועוד — מקבלות מסלול טיסה כהוכחת נסיעה. תמיד בדוק את הדרישות הספציפיות של השגרירות שלך.
כמה זמן הכרטיס הדמי תקף?
+
הכרטיסים הדמי שלנו תקפים ל-48–72 שעות, שזה יותר ממספיק לבקשות ויזה, פגישות בשגרירות, ובדיקות הגירה. אם הכרטיס שלך פג לפני הפגישה שלך, פשוט צור אחד חדש — זה לגמרי חינם ולוקח רק 30 שניות. רבים מהמטיילים יוצרים כרטיס טיסה דמי חדש בבוקר של ריאיון הוויזה שלהם למקסימום תוקף.
האם אני יכול לקבל כרטיס דמי בחינם?
+
כן! MyJet24 מייצרת כרטיסים דמי בחינם מיד עם הפניה להזמנה תקפה (PNR), קוד QR, ופורמט מקצועי של חברת תעופה. אין צורך בכרטיס אשראי או בחשבון. הכרטיס שלך מוכן תוך 30 שניות כ-PDF להורדה — הוכחה מיידית של נסיעה קדימה המתקבלת על ידי שגרירויות וקונסוליות ב-195+ מדינות. עבור מסמכי ויזה פרימיום כמו מכתבי תמיכה ומסלולי נסיעה, אנו מציעים כלים מקצועיים החל מ-$7.99.
האם הכרטיס כולל PNR/הפניה להזמנה?
+
כן. כל כרטיס דמי מ-MyJet24 כולל PNR ייחודי בן 6 תווים (Passenger Name Record) ומספר הפניה להזמנה, קוד QR שניתן לסרוק, שמות חברות תעופה אמיתיים ומספרי טיסה, זמני יציאה והגעה, ועיצוב מקצועי. אלמנטים אלה תואמים את הפורמט שהשגרירויות מצפות לראות כהוכחת נסיעה קדימה בבקשות ויזה.
אילו מדינות דורשות הוכחת נסיעה קדימה?
+
מדינות עם דרישות כרטיס קדימה מחמירות כוללות את פיליפינים, קולומביה, קוסטה ריקה, אינדונזיה (באלי), תאילנד, דרום אפריקה, האיים המלדיביים, סיישל, ועוד רבות. ייתכן שתצטרך להציג כרטיס קדימה בעת הכניסה למדינות אלו. יש לנו מדריכים מפורטים לכל 195 המדינות.
האם אני יכול ליצור כרטיס דמי הלוך ושוב?
+
כן. אתה יכול ליצור כרטיסים דמי הלוך ושוב וכרטיסים חד-כיווניים. פשוט בחר באופציה הלוך ושוב בטופס והכנס את תאריך החזרה שלך. מסלולי טיסה הלוך ושוב מומלצים לבקשות ויזת שנגן ולרוב ההגשות בשגרירות, מכיוון שהם מראים תוכנית ברורה לחזור למדינתך.
האם אני יכול להיות מגורש על שימוש בכרטיס דמי?
+
שימוש בכרטיס דמי לבקשת ויזה אינו עילה לגירוש — שגרירויות וקונסוליות רואות הזמנות טיסה זמניות כל יום וממליצות במפורש לא לרכוש כרטיסים מאושרים לפני אישור הוויזה (כפי שמוצג בהצהרות השגרירות הרשמיות למעלה). בעיות בגבולות בדרך כלל נובעות מחוסר הוכחת נסיעה קדימה בכלל, ולא מהצגת הזמנה טיסה מקצועית. תמיד בדוק את דרישות הכניסה של היעד הספציפי שלך לפני הנסיעה.
האם חברות תעופה בודקות אם הכרטיס שלך אמיתי?
+
חלק מחברות התעופה וקציני ההגירה מבקשים הוכחת נסיעה קדימה לפני שמאפשרים כניסה — במיוחד ליעדים כמו תאילנד, פיליפינים ואינדונזיה. בהגירה, הקצינים בודקים את מסמכי הנסיעה שלך באופן חזותי. PDF של MyJet24 מראה בבירור את המסלול שלך, תאריכים, ומספר ההפניה, מה שעומד בדרישה זו. כרטיסי MyJet24 מיועדים לבקשות ויזה ובדיקות הגירה — לא כתחליף לכרטיס טיסה שנרכש בעת עלייה על טיסה.
מה ההבדל בין כרטיס דמי למסלול טיסה?
+
מסלול טיסה הוא תוכנית המראה את המסלול המיועד שלך, תאריכים, וחברות תעופה. זה לא דורש שום הזמנה או תשלום. כרטיס דמי, או הזמנה זמנית לטיסה, הוא הזמנה אמיתית שנשמרת בתוך מערכת ההזמנות של חברת תעופה עם מספר הפניה בסגנון PNR. רוב הקונסוליות של שנגן, משרדי הוויזה של בריטניה, ושגרירויות מדינות המפרץ מעדיפות את ההזמנה עם מספר הפניה בסגנון PNR.
האם אני יכול להשתמש בכרטיס טיסה חד-כיווני עבור בקשת ויזה לשנגן?
+
לא אם אתה רוצה שהויזה תאושר. כל קונסוליה של שנגן דורשת הוכחה שתעזוב את אזור שנגן לפני שהויזה שלך פגה. מה שעובד: כרטיס טיסה הלוך ושוב מדומה שמראה את תאריך הכניסה שלך ותאריך החזרה בתוך משך הזמן שביקשת עבור הויזה. הקונסוליה רק צריכה לראות שיש לך תוכנית יציאה.
כמה עולה כרטיס טיסה מדומה?
+
MyJet24 הוא 100% חינם — ללא כרטיס אשראי, ללא חשבון, ללא עמלות נסתרות. בעוד ששירותים אחרים גובים 5 עד 25 דולר אמריקאי, MyJet24 מאפשר לך ליצור הזמנת טיסה מקצועית בפורמט PDF עם מספר הזמנה תוך 30 שניות ללא עלות. האלטרנטיבה היא להזמין כרטיס טיסה שניתן להחזיר במלואו ישירות עם חברת התעופה, מה שדורש להניח 800 עד 2,000 דולר אמריקאי על כרטיס האשראי שלך.
האם MyJet24 לגיטימי?
+
כן. MyJet24 מייצרת PDF של הזמנות טיסה מקצועיות עם מספרי הזמנה בסגנון PNR עבור בקשות ויזה. כל כרטיס כולל מספר הזמנה, פורמט מקצועי בסגנון חברת תעופה, קוד QR, ופרטי נוסע. יותר מ-50,000 מטיילים השתמשו ב-MyJet24 עבור בקשות הויזה שלהם ברחבי העולם.
האם VFS Global מקבלת כרטיסים מדומים?
+
VFS Global הוא מרכז עיבוד, לא מקבל ההחלטות. האם הזמנת טיסה זמנית מתקבלת תלויה במדיניות של השגרירות הספציפית. בפועל, רוב הקונסוליות של שנגן שפועלות דרך VFS מקבלות כרטיסים מדומים עם קודי PNR תקפים. לפני הפגישה שלך, אשר שההזמנה עדיין פעילה, שם הנוסע תואם את הדרכון שלך, ותאריכי הנסיעה נופלים בתוך תקופת הויזה שאתה מבקש.
האם כרטיס טיסה מדומה הוא כרטיס מאושר?
+
לא, כרטיס טיסה מדומה אינו הזמנה מאושרת בתשלום. זהו מסמך מסלול טיסה מקצועי שמראה את תוכניות הנסיעה שלך עם מספר הזמנה וקוד QR. השגרירויות דורשות הוכחה לכוונת נסיעה — לא הוכחת תשלום. המסלולים של MyJet24 מעוצבים כמו מסמכי חברות תעופה אמיתיות ומתקבלים על ידי שגרירויות וקונסוליות ב-195+ מדינות.
האם ניתן לגלות כרטיס טיסה מדומה?
+
MyJet24 מייצרת מסלולי טיסה מקצועיים הכוללים מספרי הזמנה (קודי PNR), פורמט של חברת תעופה, מספרי טיסה, וקודי QR. צוות השגרירות בודק את המסמכים הללו כדי לאמת את כוונות הנסיעה שלך. המסלולים שלנו עוקבים אחרי פורמט מסמכי חברות תעופה סטנדרטיים ומשמשים יותר מ-50,000 מטיילים עבור בקשות ויזה ברחבי העולם.
מה המטרה של כרטיס טיסה מדומה?
+
כרטיס טיסה מדומה מוכיח את תוכניות הנסיעה שלך במהלך בקשת ויזה ללא סיכון כספי. רוב השגרירויות ממליצות למבקש לא לקנות טיסות מאושרות לפני אישור הויזה — מכיוון שהויזה עשויה להידחות. כרטיס טיסה מדומה מספק מסמך מסלול טיסה שניתן לאמת במקום. עם MyJet24, אתה יכול ליצור אחד בחינם תוך כ-30 שניות.
האם כרטיס טיסה מדומה חוקי באיחוד האמירויות?
+
כן. השימוש במסלול טיסה עבור בקשות ויזה הוא חוקי באיחוד האמירויות ובעולם. מרכזי VFS Global באבו דאבי ודובאי מקבלים באופן שגרתי מסמכי מסלול טיסה. MyJet24 משמשת על ידי אלפי מבקשי ויזה מבוססי איחוד האמירויות עבור ויזות שנגן, ארה"ב, בריטניה וסוגי ויזה אחרים.
כמה מהר אני יכול לקבל כרטיס טיסה מדומה?
+
עם MyJet24, כ-30 שניות. הזן את שדות התעופה שלך, בחר תאריך, וה-PDF המקצועי שלך עם מספר הזמנה וקוד QR מוכן להורדה מיידית. אין צורך בחשבון, אין תשלום, אין המתנה למשלוח בדוא"ל.
האם אני יכול להשתמש בכרטיס טיסה מדומה בשדה התעופה?
+
לא. כרטיס טיסה מדומה מיועד באופן בלעדי למטרות בקשת ויזה — להראות לשגרירויות ולקונסוליות את תוכניות הנסיעה שלך. הוא לא צריך לשמש לצ'ק-אין בשדה התעופה, לעלייה למטוס, או לעבור דרך הגירה בהגעה. עבור מצבים אלה, אתה זקוק להזמנת טיסה מאושרת בתשלום. עם זאת, קציני ההגירה בשדה התעופה עשויים לבקש הוכחה לנסיעה קדימה במהלך הכניסה — במקרה זה, נדרש כרטיס מאושר.
Reviews

מה המשתמשים שלנו אומרים

משוב אמיתי מנוסעים שהשתמשו ב-MyJet24 לבקשות ויזה

4.8 from 20 verified reviews
לפני 6 שעות

"Got my passport back yesterday. Spain visa approved. Seven working days. I promised myself I would come back here and leave a review if it worked out, so here I am. First Schengen application. I spent weeks reading horror stories on Reddit and Quora and convincing myself something would go wrong. Nothing went wrong. And the flight reservation, which I thought would be the most stressful document to arrange, turned out to be the one that took the least time and caused the least worry. Thank you. Genuinely."

Read more ▾
LI
Lakshmi Iyer
🇮🇳 India
Schengen Visa (Spain)
לפני 10 שעות

"Schengen visa number seven using MyJet24 reservations. Italy twice, France three times, Spain twice. Never once questioned by any consulate. I stopped thinking about flight reservations as a task somewhere around application number four. It takes less time than making coffee. The fact that I used to block lakhs on refundable tickets and wait weeks for refunds feels genuinely embarrassing in hindsight."

Read more ▾
AK
Anil Kapoor
🇮🇳 India
Schengen Visa (Italy)
לפני יום

"Picture it. Jakarta traffic. 8:47am. I am in the back of a Grab car fourteen minutes from the Italian embassy. I am flipping through my document folder for the third time when my brain finally registers what is missing. No flight reservation. It is at home. On my laptop. Which is on my bed. Which is forty minutes away in Kemang. My hands are slightly shaky. I pull up MyJet24 on my phone. Fill in the details. Get the PDF. Email it to myself. Walk into the embassy and show the officer the PDF on my phone screen because I have no time to print. She squints at it, writes something down, hands my folder back. Four days later: approved."

Read more ▾
AP
Adi Prasetyo
🇮🇩 Indonesia
Schengen Visa (Italy)
לפני יומיים

"I sat on my bedroom floor at midnight with my VFS appointment twelve hours away, laptop open, genuinely close to tears because the travel agent had closed for the day and I had no flight reservation. Then I found this site. Three minutes later I had one. I just sat there holding my phone looking at the PDF. That feeling of going from completely stuck to completely sorted in three minutes is something I will not forget for a while."

Read more ▾
PS
Priya Sharma
🇮🇳 India
Schengen Visa (France)
לפני 4 ימים

"Works. Booking reference is real. Nairobi embassy did not blink. Moving on."

Read more ▾
JO
James Odhiambo
🇰🇪 Kenya
Schengen Visa (Germany)
לפני 5 ימים

"Ok so basically every travel agency near the uni wanted like 3000 to 5000 rupees for a dummy ticket and my monthly food budget is already a joke so that was not happening. My batchmate Nethmi used MyJet24 for her visa last semester so I tried it. Colombo to Frankfurt return. Done. The booking reference thing was legit when I checked. Took the printout to the German embassy. Got the visa. Nethmi gets full credit for the recommendation. MyJet24 gets credit for existing. My wallet gets credit for not losing another 5000 rupees."

Read more ▾
DP
Dinusha Perera
🇱🇰 Sri Lanka
Schengen Visa (Germany)
לפני 5 ימים

"My husband wanted to book actual flights before the visa was approved. I said that is insane, what if they refuse us and we are stuck with nonrefundable tickets to Paris. He said they offer refundable fares. I said have you seen what refundable fares cost on Air France in July. We argued about it for a week. Then my sister sent me the MyJet24 link and said you are both overthinking this. She was right. Generated two reservations, submitted them, got the visas, then booked the actual flights on a sale fare that was half the price of the refundable ones my husband wanted. I have not let him forget this."

Read more ▾
NK
Nour Khoury
🇱🇧 Lebanon
Schengen Visa (France)
לפני שבוע

"I have tried three different dummy ticket services over the past two years. One charged me $18 and the booking vanished within six hours. Another gave me a PDF that looked like it was made in Microsoft Paint. MyJet24 is the first one where the output actually resembles what you get when you book directly on an airline website. Not identical, but close enough that nobody at VFS Dubai looked at it twice. Four stars because I still think a confirmation with the airline logo would look more polished, but honestly that is me being picky."

Read more ▾
TM
Tarek Mansour
🇪🇬 Egypt
UK Visitor Visa
לפני שבוע

"UPDATE: Coming back to change this from four stars to five. When I first wrote this review three weeks ago I was still waiting for the visa and was nervous about the reservation expiring before the embassy looked at my file. It did not. Visa came through yesterday for all four family members. The reservations were long expired by then but that does not matter because the embassy checks them at the time of submission, not weeks later. So if you are worried about the same thing I was: relax. File it and forget it."

Read more ▾
ZM
Zainab Malik
🇵🇰 Pakistan
Schengen Visa (Italy)
לפני שבוע

"Two adults, two kids, four separate reservations needed for VFS Karachi. I made a spreadsheet to track the application documents for each family member. The flight reservation was the only row that filled itself in under five minutes per person. Every other row on that spreadsheet took hours. All four bookings had their own references, all four checked out. Two weeks later, four visas in four passports. The spreadsheet is now a template for next time."

Read more ▾
BH
Bilal Hassan
🇵🇰 Pakistan
UK Visitor Visa
לפני שבועיים

"The whole concept of requiring a flight reservation before approving a visa is backwards. You are asking me to plan a trip I might not be allowed to take. The airline will not refund me if the visa is refused. The embassy knows this. Everybody knows this. But the requirement exists, so you play the game. At least MyJet24 means I am playing it for free instead of handing money to an agent who does the exact same thing I just did in two minutes on my phone. Lagos consulate interview went fine. Officer could not have cared less about the flight document."

Read more ▾
EN
Emeka Nnamdi
🇳🇬 Nigeria
US B1/B2 Visa
לפני שבועיים

"My brother has been in Toronto for six years. Six years. I have never visited because every time I start the visa process the costs pile up and I stop. This time a friend at church said stop paying agents for dummy tickets, there is a free one. I did not believe her. But she was right. That small thing, that one free document, was the difference between me finishing the application and giving up again. I am writing this from Pearson Airport. I made it."

Read more ▾
KA
Kwame Asante
🇬🇭 Ghana
Canada Tourist Visa
לפני שבועיים

"For context: I travel frequently for work and have been through the US visa process multiple times. The flight reservation has always been the lowest-value, highest-annoyance part of the paperwork. MyJet24 eliminates that friction point entirely. The output is clean, the booking reference validates against the airline system, and the turnaround is measured in minutes, not hours. I have recommended it to several colleagues. Each of them had the same reaction I did: why did nobody tell me about this sooner."

Read more ▾
VM
Vik Mehta
🇬🇧 United Kingdom
US B1/B2 Visa
לפני 3 שבועות

"Everything about the actual ticket was good. My problem is that I generated it at 2am Manila time and then could not sleep because I kept wondering if I had entered my middle name correctly. There is no way to edit or regenerate without starting over completely. I ended up generating a second one just to be safe. Both worked. But a simple edit button or a preview screen before final generation would save people like me a lot of unnecessary 3am anxiety."

Read more ▾
MS
Maria Santos
🇵🇭 Philippines
Schengen Visa (Spain)
לפני 3 שבועות

"Let me tell you about the agent on Gulshan Avenue. He sits behind a glass counter, types your name into the same kind of website I found in two seconds on Google, clicks a button, prints a page, and charges you 4,500 taka. Four thousand five hundred taka for something that took him forty five seconds. I know because I watched him do it for the person before me in the queue. I walked out, went home, did it myself on MyJet24, and have been angry about almost paying that man ever since. The French embassy in Dhaka approved my visa in twelve days. The agent had nothing to do with it."

Read more ▾
RH
Rafiq Hossain
🇧🇩 Bangladesh
Schengen Visa (France)
לפני 4 שבועות

"Submitted my Spain application through VFS Lagos this morning. I do not know if the visa will be approved yet. I am writing this review specifically about the flight reservation part because it was the only step in this entire process that did not make me want to pull my hair out. Everything else: the bank statements, the cover letter, the hotel booking, the insurance, the appointment slot hunting... painful. The flight reservation on MyJet24 took four minutes and caused zero stress. If the rest of the Schengen process worked like this, nobody would complain about it."

Read more ▾
JE
Joy Eze
🇳🇬 Nigeria
Schengen Visa (Spain)
לפני חודש

"When you work remotely and move countries every few months, visa applications become part of your routine the way grocery shopping is part of other people's routines. You learn which parts actually matter (bank statements, cover letter, insurance) and which parts are just procedural box-ticking (flight reservation). The flight reservation is a box to tick. MyJet24 ticks it. I have used it from Cape Town, Lisbon, and Bangkok at this point. Same result every time. It is not exciting. It is just reliable. And when you are mid-move with seventeen tabs open, reliable is everything."

Read more ▾
LD
Lerato Dlamini
🇿🇦 South Africa
Schengen Visa (Germany)
לפני חודש

"B1/B2 interview at the Amman embassy. The officer asked one question about my travel dates. I pointed to the MyJet24 printout. He moved on. Entire interaction around the flight: five seconds. Visa approved. There is nothing complicated about this. You need a document, this gives you one, it is real, it works."

Read more ▾
LA
Lina Awad
🇯🇴 Jordan
US B1/B2 Visa
לפני חודש

"I am the kind of person who reads the entire terms and conditions page before clicking accept. So naturally I spent twenty minutes examining the MyJet24 website before I trusted it enough to enter my passport number. Then I spent another fifteen minutes cross checking the booking reference on the airline website, then on CheckMyTrip, then on a third verification site I found on Reddit. Everything matched everywhere. The Canadian embassy in Ankara processed my visa without asking about the flight. Four stars because my personality will not allow me to give five stars to anything I have not used at least three times."

Read more ▾
BY
Burak Yilmaz
🇹🇷 Turkey
Canada Tourist Visa
לפני חודש

"I originally used MyJet24 because I did not want to pay for a dummy ticket. That was the only reason. But what actually impressed me was how the PDF looked. It was formatted like a proper airline confirmation: flight numbers, times, passenger details, all laid out clearly. The Italian embassy in Hanoi accepted it without a word. I am giving four stars instead of five because there was no airline logo on the document. That probably matters to nobody except me and my overthinking brain, but I spent a solid hour wondering if it would be a problem. It was not."

Read more ▾
MT
Minh Tran
🇻🇳 Vietnam
Schengen Visa (Italy)
הפניה להזמנה PNR
כל כרטיס כולל הפניה ייחודית של 6 תווים PNR
שירות חינם 100%
אין כרטיס אשראי, אין עמלות נסתרות. יצירת כרטיס דמה חינם לחלוטין
משלוח מיידי
הורד את כרטיס ה-PDF המקצועי שלך מיד לאחר היצירה
מוכר על ידי שגרירויות
פורמט המתקבל על ידי שגרירויות וקונסוליות ברחבי העולם לבקשות ויזה

השוואה כנה

כיצד MyJet24 משתווה לחלופות בתשלום

אנו מאמינים בשקיפות. כך המחולל החינמי שלנו לכרטיסים מדומים משתווה למתחרים בתשלום.

תכונה MyJet24 OnwardTicket BestOnwardTicket DummyFlights
מחיר חינם $16 $14 $15
מהירות ~30 שניות ~60 שניות ~2 דקות ~5 דקות
קוד QR
הזמנת מלון ✓ חינם $11 נוסף
מספר הזמנה
שפות 11 6 5 1
דרוש חשבון לא דוא"ל דוא"ל דוא"ל
כלי ויזה 3 כלים חינם
מדינות 195+ 195+ 195+ N/A
תכונות פרימיום
נתוני חברת תעופה אמיתיים ✓ פרימיום
לוגו חברת תעופה ב-PDF ✓ פרימיום
אישור דוא"ל ✓ פרימיום

השוואה מבוססת על מידע זמין לציבור נכון למרץ 2026.

קבלו את הכרטיס שלכם עכשיו
חינמי או פרמיום — מוכן תוך 30 שניות

צריכים מסמכי ויזה מקצועיים?

מסמכי ויזה מקצועיים — מוכנים לשגרירות, מסירת PDF מיידית

מכתב תמיכה לויזה
מכתב כיסוי מקצועי
$7.99
מכתב הזמנה
הזמנה מהמארח לויזה
$7.99
מסלול טיסה
תוכנית טיול יומית
$7.99
מכתב כיסוי לשגרירות
מכתב כיסוי לפגישה
$7.99
256-bit SSL מוצפן
תשלום מאובטח דרך Stripe
אחריות החזר כספי

ראה את זה בפעולה

צור כרטיס דמה חינם ב-30 שניות

צפה כמה קל ליצור PDF מקצועי של מסלול טיסה עם הפניה להזמנה וקוד QR — לגמרי בחינם.

הקלטת מסך אמיתית מתחת ל-30 שניות פלט PDF אמיתי מוצג
נסה את זה בחינם →
Expert Guides
Thailand Digital Arrival Card (TDAC) 2026: Complete Filing Guide
How to file the Thailand Digital Arrival Card (TDAC) on tdac.immigration.go.th — 3-day…
Bali Tourist Tax 2026: IDR 150,000 Levy, Payment Guide & DPS Enforcement
Bali Tourist Tax 2026: IDR 150,000 Love Bali levy explained — payment on lovebali.balip…
Schengen Visa Rejection Appeal 2026: Letter Templates & Win Rates by Country
Schengen visa rejected? Decode the 13 refusal codes, choose appeal or reapply, follow t…
NZeTA New Zealand 2026: Complete Guide to Application, Fees & Proof of Onward Travel
NZeTA New Zealand 2026 guide: NZD $117 total fee, 72-hour processing, eligible national…
Dummy Ticket for Singapore 2026: ICA's No-Boarding Directive, SGAC Rules & What Changi Airlines Actually Check
41,800 travelers denied entry to Singapore in 2025. ICA's No-Boarding Directive (Jan 20…
Israel ETA-IL 2026: Complete Application Guide, Fees & Onward-Ticket Rules
Israel ETA-IL 2026 explained: 25 NIS fee, 72-hour processing, eligible countries, onwar…
GCC Unified Tourist Visa 2026: One Visa for Saudi, UAE, Bahrain, Kuwait, Oman & Qatar
The GCC Unified Tourist Visa lets you visit all 6 Gulf states on a single application i…
Mexico FMM 2026: Digital Tourist Card Guide for World Cup Travelers
Mexico FMM 2026 explained: FMMd vs FMMe, digital application steps, World Cup entry rul…