We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Personal loan pages with Service + Offer context, FAQs, and breadcrumb navigation.
Anchors the personal loan service, provider, and area served.
Expresses a sample loan offer with APR and term details.
Answers questions about credit checks, fees, and funding timelines.
Provides navigation context for the personal loan page.
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": "Service",
"@id": "https://www.example.com/loans/personal#service",
"name": "Personal Loans",
"description": "Fixed-rate personal loans with fast approvals and flexible terms.",
"serviceType": "Personal Loan",
"provider": { "@type": "Organization", "name": "Northwind Lending" },
"areaServed": { "@type": "AdministrativeArea", "name": "US" },
"offers": {
"@type": "Offer",
"@id": "https://www.example.com/loans/personal#offer-36mo",
"price": "8.99",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/loans/personal/apply",
"priceValidUntil": "2025-12-31",
"category": "36MonthAPR"
}
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/loans/personal#offer-36mo",
"name": "36-Month Personal Loan - Sample APR",
"price": "8.99",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/loans/personal/apply",
"priceValidUntil": "2025-12-31",
"category": "36MonthAPR"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Does applying affect my credit score?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We use a soft credit check for pre-qualification. A hard inquiry happens only if you accept an offer."
}
},
{
"@type": "Question",
"name": "How fast can I get funded?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Approved applicants can receive funds in as little as 1-2 business days."
}
},
{
"@type": "Question",
"name": "Are there origination fees?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Some loans include an origination fee; we disclose this during the application process."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Loans", "item": "https://www.example.com/loans" },
{ "@type": "ListItem", "position": 3, "name": "Personal Loans", "item": "https://www.example.com/loans/personal" }
]
}
]Yes if you show sample APRs or terms. Keep price and priceValidUntil aligned to the page.
Add one Offer per term shown (e.g., 36-month, 60-month) with distinct @id values.