We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Travel agency pages with services, reviews, FAQs, and breadcrumb navigation.
Agency identity with location/contact and services.
Describe the travel services offered.
Social proof from travelers.
Answer booking, cancellation, and itinerary questions.
Navigation context.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "TravelAgency",
"@id": "https://www.example.com/agencies/coastline-travel#agency",
"name": "Coastline Travel",
"url": "https://www.example.com/agencies/coastline-travel",
"image": "https://www.example.com/images/agencies/coastline.webp",
"telephone": "+1-415-555-4545",
"address": {
"@type": "PostalAddress",
"streetAddress": "400 Bay St",
"addressLocality": "San Francisco",
"addressRegion": "CA",
"postalCode": "94133",
"addressCountry": "US"
},
"sameAs": [
"https://www.facebook.com/coastlinetravel",
"https://www.linkedin.com/company/coastline-travel"
]
},
{
"@context": "https://schema.org",
"@type": "Service",
"@id": "https://www.example.com/agencies/coastline-travel#service",
"name": "Custom Europe itineraries",
"description": "End-to-end trip planning for Europe, including flights, hotels, and tours.",
"serviceType": "Travel planning",
"provider": {
"@id": "https://www.example.com/agencies/coastline-travel#agency"
},
"areaServed": {
"@type": "AdministrativeArea",
"name": "Europe"
},
"offers": {
"@type": "Offer",
"price": "150.00",
"priceCurrency": "USD"
}
},
{
"@context": "https://schema.org",
"@type": "Review",
"@id": "https://www.example.com/reviews/coastline-1#review",
"name": "Fantastic Italy trip",
"reviewBody": "They planned a seamless two-week Italy itinerary with great hotels and private tours.",
"datePublished": "2026-02-18",
"reviewRating": {
"@type": "Rating",
"ratingValue": 5,
"bestRating": 5
},
"author": { "@type": "Person", "name": "Taylor S." },
"itemReviewed": { "@id": "https://www.example.com/agencies/coastline-travel#agency" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do you handle flights?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. We can book flights or work with flights you’ve already purchased."
}
},
{
"@type": "Question",
"name": "What’s your cancellation policy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Our planning fee is refundable up to 7 days before travel; supplier policies may vary."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Travel Agencies", "item": "https://www.example.com/agencies" },
{ "@type": "ListItem", "position": 3, "name": "Coastline Travel", "item": "https://www.example.com/agencies/coastline-travel" }
]
}
]Yes, to describe the specific travel services you offer and tie them to the agency as provider.
Yes. Include multiple Service objects if you have distinct offerings (e.g., custom itineraries, group tours).